-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "shift-spec-consumer",
"version": "1.0.1",
"description": "Parse shift-spec into a more usable form",
"author": "Shape Security",
"homepage": "https://github.com/shapesecurity/shift-spec-consumer",
"repository": {
"type": "git",
"url": "https://github.com/shapesecurity/shift-spec-consumer.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha --compilers js:babel-register --inline-diffs --check-leaks --ui tdd --reporter dot test",
"build": "babel --source-maps-inline --out-dir dist src",
"prepublish": "rm -rf dist && npm update && npm run build"
},
"dependencies": {
"webidl2": "^2.0.11"
},
"devDependencies": {
"babel-cli": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.3.13",
"mocha": "^2.3.4"
},
"keywords": [
"Shift",
"AST",
"node",
"parser",
"Parser",
"API",
"parse",
"abstract",
"syntax",
"tree"
],
"bugs": {
"url": "https://github.com/shapesecurity/shift-spec-consumer/issues"
},
"license": "Apache-2.0"
}