-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.67 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.67 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
46
47
48
49
50
51
52
{
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",
"web": "http://marijnhaverbeke.nl"
},
{
"name": "Ingvar Stepanyan",
"email": "me@rreverser.com",
"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 .",
"lint:fix": "eslint . --fix",
"prepare": "npm run test",
"pretest": "npm run build:main && npm run build:loose",
"test": "node test/run.js",
"test:test262": "node bin/run_test262.js"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-buble": "^1.0.3",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@unicode/unicode-17.0.0": "^1.6.16",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"neostandard": "^0.13.0",
"rollup": "^4.59.0",
"test262": "git+https://github.com/tc39/test262.git#84082e2705b9119d91789f9745df78a6fcecf7ca",
"test262-parser-runner": "^0.5.0"
}
}