-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 966 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 966 Bytes
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
{
"name": "glance-parser",
"version": "0.0.1",
"description": "Parses glance syntax",
"main": "lib/parser.js",
"scripts": {
"build": "rm -rf lib; mkdir lib; node_modules/.bin/pegjs -o lib/parser.js src/glance.pegjs",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/quasimatic/glance-parser.git"
},
"keywords": [
"glance",
"parser"
],
"author": "Dan Gilkerson <dangilkerson@quasimatic.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quasimatic/glance-parser/issues"
},
"homepage": "https://github.com/quasimatic/glance-parser#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"pegjs": "^0.10.0",
"wallaby-webpack": "0.0.38",
"webpack": "^2.3.2"
}
}