-
Notifications
You must be signed in to change notification settings - Fork 884
/
package.json
48 lines (48 loc) · 1.57 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
{
"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": {
"build": "npm run build:main && npm run build:walk && npm run build:loose",
"build:loose": "rollup -c acorn-loose/rollup.config.mjs",
"build:main": "rollup -c acorn/rollup.config.mjs",
"build:walk": "rollup -c acorn-walk/rollup.config.mjs",
"generate": "npm run generate:identifier-regex && npm run generate:unicode-script-values",
"generate:identifier-regex": "node bin/generate-identifier-regex.js",
"generate:unicode-script-values": "node bin/generate-unicode-script-values.js",
"lint": "eslint .",
"prepare": "npm run test",
"pretest": "npm run build:main && npm run build:loose",
"test": "node test/run.js && npm run lint",
"test:test262": "node bin/run_test262.js"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.2",
"@unicode/unicode-16.0.0": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"rollup": "^3.29.4",
"test262": "git+https://github.com/tc39/test262.git#867ca540d6cc991a82b41a3b7f9ccb9e93efe803",
"test262-parser-runner": "^0.5.0"
}
}