forked from engine262/engine262
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
50
51
52
53
54
55
56
57
{
"name": "engine262",
"version": "0.0.1",
"description": "Implementation of ECMA-262 in JavaScript",
"author": "engine262 Contributors",
"license": "MIT",
"homepage": "https://github.com/engine262/engine262#readme",
"bugs": {
"url": "https://github.com/engine262/engine262/issues"
},
"main": "dist/engine262",
"scripts": {
"test:test262": "node test/test262/test262.js",
"test:supplemental": "node test/supplemental.js",
"test:json": "node test/json/json.js",
"build:grammar": "nearleyc src/grammar/StrNumericLiteral.ne -o src/grammar/StrNumericLiteral-gen.mjs",
"build:engine": "rollup -c",
"lint": "eslint rollup.config.js test/ src/ bin/ inspector/ scripts/ --cache --ext=js,mjs",
"build": "npm run build:engine",
"test": "npm run test:test262 && npm run test:supplemental",
"coverage": "nyc --reporter=lcov bash test/coverage_root.sh",
"prepublishOnly": "node scripts/tag_version_with_git_hash.js",
"postpublish": "git reset --hard HEAD"
},
"bin": {
"engine262": "bin/engine262.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engine262/engine262.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@engine262"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@snek/source-map-support": "^1.0.4",
"acorn": "^7.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"glob": "^7.1.6",
"minimatch": "^3.0.4",
"nearley": "2.16.0",
"nyc": "^15.0.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"test262-stream": "^1.3.0",
"unicode-13.0.0": "^0.8.0",
"ws": "^7.2.3"
}
}