-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "jsonscript-js",
"version": "0.6.0",
"description": "JavaScript interpreter for JSONScript",
"main": "lib/jsonscript.js",
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "istanbul cover -x 'spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec",
"test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
"eslint": "eslint lib/*.js lib/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JSONScript/jsonscript-js.git"
},
"keywords": [
"remote processing",
"batch execution",
"JSONScript",
"interpreter"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSONScript/jsonscript-js/issues"
},
"homepage": "https://github.com/JSONScript/jsonscript-js",
"dependencies": {
"ajv": "^4.7.0",
"dot": "^1.0.3",
"json-pointer": "^0.3.1",
"jsonscript": "^0.6.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"jsonscript-test": "^0.6.0",
"jsonscript-test-suite": "^0.6.0",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2"
}
}