-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "little-pjax",
"description": "A simple, small and modern implementation of pjax",
"version": "0.4.0",
"author": "otariidae",
"main": "dist/cjs/index.js",
"files": [
"dist"
],
"license": "CC0-1.0",
"homepage": "https://github.com/otariidae/pjax",
"repository": {
"type": "git",
"url": "https://github.com/otariidae/pjax.git"
},
"bugs": {
"url": "https://github.com/otariidae/pjax/issues"
},
"scripts": {
"lint": "npm run lint:oxlint && npm run lint:prettier",
"lint:oxlint": "oxlint --fix .",
"lint:prettier": "prettier --write .",
"test": "mocha -r ts-node/register test/*.ts",
"prebuild": "rm -rf dist",
"build": "tsc"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.2",
"cross-env": "^7.0.2",
"jsdom": "^25.0.0",
"mocha": "^10.7.3",
"oxlint": "^0.9.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}