-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "ecma262-jison",
"version": "0.4.0-alpha.0",
"description": "ecma262 implementation in jison",
"main": "src/index.js",
"scripts": {
"buildparser": "node --max-old-space-size=4096 src/ecma262.js",
"build": "node --max-old-space-size=4096 ./node_modules/.bin/babel src --out-dir lib",
"lint": "eslint --fix ./src",
"test": "mocha --timeout 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-y/ecma262-jison.git"
},
"keywords": [
"ecma262",
"jison"
],
"author": "w-y",
"license": "MIT",
"bugs": {
"url": "https://github.com/w-y/ecma262-jison/issues"
},
"homepage": "https://github.com/w-y/ecma262-jison#readme",
"dependencies": {
"jison-gho": "0.6.0-188",
"unicode-6.3.0": "^0.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.3.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^8.2.1"
}
}