-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
41
42
43
44
{
"name": "pnovel",
"version": "0.7.8",
"description": "Light weight markup language for Pixiv novels",
"main": "src/eval.js",
"repository": "ssh://git@github.com/515hikaru/pnovel.git",
"author": "515hikaru <12kojima.takahiro@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/jest": "^29.5.4",
"commander": "^12.0.0",
"pegjs": "^0.10.0",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2"
},
"bin": {
"pnovel": "./bin/pnovel.js"
},
"scripts": {
"generate": "pegjs -o parser/parser.js pnovel.js",
"prepack": "pegjs -o parser/parser.js pnovel.js && webpack",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint src/*.ts src/__tests__/*.spec.ts",
"fix": "eslint --fix src/*.ts src/__tests__/*.spec.ts",
"start": "node dist/main.js",
"test": "npm run generate && jest --coverage",
"build": "webpack"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}