-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 867 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
{
"name": "djs-dson",
"version": "0.0.2",
"description": "DSON implementation in Dogescript",
"devDependencies": {
"blanket": "^1.2.0",
"coveralls": "^2.11.4",
"dogescript": "^2.3.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vpzomtrrfrt/DSON.git"
},
"homepage": "https://github.com/vpzomtrfrt/DSON",
"author": "VpzomTrrfrt",
"scripts": {
"prepublish": "node_modules/dogescript/bin/dogescript.js DSON.djs > DSON.js",
"test": "mkdir test_build; node_modules/dogescript/bin/dogescript.js test/test.djs > test/test.js; node_modules/mocha/bin/mocha --require blanket -R mocha-lcov-reporter | node_modules/coveralls/bin/coveralls.js"
},
"config": {
"blanket": {
"pattern": ["DSON.js", "test_build"]
}
},
"main": "DSON.js"
}