forked from bugventure/jsen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.14 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
{
"name": "jsen",
"version": "0.6.0",
"description": "JSON-Schema validator built for speed",
"author": "Veli Pehlivanov <[email protected]>",
"homepage": "https://github.com/bugventure/jsen",
"repository": {
"type": "git",
"url": "https://github.com/bugventure/jsen.git"
},
"bugs": "https://github.com/bugventure/jsen/issues",
"keywords": [
"JSON",
"schema",
"validator",
"speed"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"build": "cat ./lib/header > ./dist/jsen.js && ./node_modules/.bin/browserify index.js -s jsen >> ./dist/jsen.js && ./node_modules/.bin/uglify -s ./dist/jsen.js -o ./dist/jsen.min.temp && cp ./lib/header ./dist/jsen.min.js && cat ./dist/jsen.min.temp >> ./dist/jsen.min.js && rm ./dist/jsen.min.temp",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"devDependencies": {
"mocha": "1.x",
"coveralls": "2.x",
"istanbul": "0.x",
"browserify": "10.x",
"uglify": "0.x"
}
}