forked from sparqling/spang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 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
36
37
38
{
"name": "spang",
"engines": {
"node": ">=11.0.0",
"npm": ">=6.0.0"
},
"version": "2.0.0",
"description": "JavaScript implementation of SPANG",
"dependencies": {
"commander": "^2.16.0",
"expand-home-dir": "0.0.3",
"fs": "0.0.1-security",
"mustache": "4.0.0",
"request": "^2.85.0",
"sparqljs": "^3.0.0",
"sync-request": "^6.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"mocha": "^7.1.2",
"browserify": "^16.5.0",
"pegjs": "^0.10.0"
},
"bin": {
"spang2": "./bin/spang.js",
"spfmt": "./bin/spfmt.js"
},
"mocha": {
"timeout": 15000,
"diff": false
},
"scripts": {
"test": "mocha",
"pegjs": "pegjs -o lib/parser.js syntax/spang.pegjs",
"browserify": "browserify lib/spang_browser.js > lib/spang_bundled.js && browserify lib/spfmt_browser.js > lib/spfmt_bundled.js"
}
}