forked from acornjs/acorn
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.54 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
45
46
47
48
49
{
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
},
{
"name": "Ingvar Stepanyan",
"email": "[email protected]",
"web": "http://rreverser.com/"
},
{
"name": "Adrian Heine",
"web": "http://adrianheine.de"
}
],
"repository": {
"type": "git",
"url": "https://github.com/acornjs/acorn.git"
},
"license": "MIT",
"scripts": {
"prepare": "npm run test",
"test": "node test/run.js && node test/lint.js",
"pretest": "npm run build:main && npm run build:loose",
"test:test262": "node bin/run_test262.js",
"build": "npm run build:main && npm run build:walk && npm run build:loose && npm run build:bin",
"build:main": "rollup -c acorn/rollup.config.js",
"build:walk": "rollup -c acorn-walk/rollup.config.js",
"build:loose": "rollup -c acorn-loose/rollup.config.js",
"build:bin": "rollup -c acorn/rollup.config.bin.js",
"lint": "eslint acorn/src/ acorn-walk/src/ acorn-loose/src/"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"rollup": "^1.7.0",
"rollup-plugin-buble": "^0.19.0",
"test262": "git+https://github.com/tc39/test262.git#61c6f8214bd0c6d72059578e80ce7659aff984bd",
"test262-parser-runner": "^0.5.0",
"test262-stream": "^1.2.1",
"unicode-13.0.0": "^0.8.0"
}
}