-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "shift-spidermonkey-converter",
"version": "2.0.1",
"description": "convert ASTs between Shift and SpiderMonkey formats",
"author": "Shape Security",
"homepage": "https://github.com/shapesecurity/shift-spidermonkey-converter-js",
"repository": {
"type": "git",
"url": "https://github.com/shapesecurity/shift-spidermonkey-converter-js.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha --compilers js:babel-register --check-leaks --inline-diffs --ui tdd --reporter dot test",
"build": "babel --out-dir dist src --source-maps inline"
},
"dependencies": {
"shift-ast": "^3.1.0"
},
"devDependencies": {
"babel-cli": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.3.13",
"esprima": "^2.7.2",
"espurify": "^1.6.0",
"estraverse": "^4.2.0",
"everything.js": "^1.0.3",
"mocha": "^2.4.5",
"shift-parser": "^4.1.3"
},
"keywords": [
"Shift",
"AST",
"node",
"converter",
"SpiderMonkey",
"Parser",
"API",
"convert",
"between",
"spider",
"monkey",
"abstract",
"syntax",
"tree"
],
"bugs": {
"url": "https://github.com/shapesecurity/shift-spidermonkey-converter-js/issues"
},
"license": "Apache-2.0"
}