-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "parsey",
"version": "0.2.0",
"description": "A parser for context-free grammars",
"main": "parsey.js",
"scripts": {
"lint": "eslint . --ignore-pattern coverage",
"test": "jasmine",
"coverage": "istanbul cover --include-all-sources -x **/spec/** -x **/examples/** jasmine",
"coveralls": "istanbul cover --include-all-sources -x **/spec/** -x **/examples/** jasmine --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patgrasso/parsey.git"
},
"keywords": [
"parse",
"grammar",
"cfg",
"ast",
"earley"
],
"author": "Pat Grasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/patgrasso/parsey/issues"
},
"homepage": "https://github.com/patgrasso/parsey#readme",
"devDependencies": {
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"istanbul": "^0.4.4",
"jasmine": "^2.4.1"
}
}