forked from wenyan-lang/wenyan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
45
{
"name": "wenyan-lang",
"repository": {
"type": "git",
"url": "https://github.com/LingDong-/wenyan-lang.git"
},
"scripts": {
"make_cmdline": "node ./tools/make_cmdline.js && pkg ./build/wenyan.js --out-path ./build",
"make_ide": "node ./tools/make_ide.js",
"make_site": "node ./tools/make_site.js",
"test": "mocha --require mocha-snapshots",
"test:update": "mocha --require mocha-snapshots --update",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint {src,tools,test}/**/*.js",
"prettify": "prettier {src,tools,test}/**/*.js --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tools,test}/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"mocha-snapshots": "^4.2.0",
"pkg": "^4.4.2",
"prettier": "^1.19.1"
}
}