-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "async-validate",
"description": "Asynchronous validation for node and the browser",
"version": "1.0.3",
"author": "muji <[email protected]>",
"license": "MIT",
"browser": "./lib/schema.js",
"repository": {
"type": "git",
"url": "https://github.com/tmpfs/async-validate.git"
},
"keywords": [
"validation",
"validate",
"valid",
"object",
"type"
],
"dependencies": {
"format-util": "^1.0.3",
"zephyr": "^1.3.6"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "~0.4.3",
"mocha": "^5.2.0",
"moment": "^2.22.2"
},
"scripts": {
"lint": "jshint . && jscs .",
"docs": "npm run example && npm run readme",
"readme": "mk readme",
"example": "mdp --force -v -i doc/example.json -o EXAMPLE.md",
"browser": "browserify -o async-validate.js -e ./lib/schema.js && du -bh async-validate.js",
"clean": "rm -rf coverage ./async-validate.js ./test/spec.js",
"spec": "node test/build.js > test/index.js && browserify -o test/spec.js -e test/index.js",
"test": "NODE_ENV=test mocha test/global ${SPEC:-test/spec}",
"cover": "NODE_ENV=test istanbul cover _mocha -- test/global ${SPEC:-test/spec}",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}