forked from JSONScript/jsonscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 878 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
{
"name": "jsonscript",
"version": "0.6.0",
"description": "Platform independent asynchronous and concurrent scripting language using JSON format",
"main": "index.js",
"scripts": {
"generate": "node scripts/generate",
"test-spec": "mocha --recursive --reporter=spec spec",
"test": "npm run generate && npm run test-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/JSONScript/jsonscript.git"
},
"keywords": [
"JSON",
"JSONScript"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSONScript/jsonscript/issues"
},
"homepage": "https://github.com/JSONScript/jsonscript",
"devDependencies": {
"ajv": "^4.7.0",
"dot": "^1.0.3",
"gh-pages-generator": "^0.2.2",
"json-schema-test": "^1.2.1",
"mocha": "^2.2.5",
"pre-commit": "^1.1.2"
}
}