forked from aliyun/darabonba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 823 Bytes
/
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
{
"name": "@darabonba/parser",
"version": "2.0.8",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint --fix lib test *.js",
"test": "mocha --inline-diffs -b -R spec test/*.test.js",
"test-cov": "nyc -r=html -r=text -r=lcov mocha -R spec test/*.test.js",
"ci": "npm run lint && npm run test-cov && codecov"
},
"author": "Jackson Tian",
"license": "MIT",
"devDependencies": {
"codecov": "3.1.0",
"eslint": "^8",
"expect.js": "^0.3.1",
"mocha": "^10",
"nyc": "^17"
},
"dependencies": {
"@jacksontian/skyline": "^1.3.0",
"strip-json-comments": "^3.1.1"
},
"description": "",
"files": [
"bin",
"lib",
"builtin",
"index.js"
],
"repository": "[email protected]:aliyun/darabonba.git"
}