-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.25 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
45
46
47
48
49
50
{
"name": "purify",
"description": "Validator functions for many types of input, intended for use with express",
"keywords": [
"validation",
"validator",
"express",
"input",
"parameter",
"param"
],
"scripts": {
"prepack": "npm test && npm run build",
"build": "rollup -c",
"lint": "jshint .",
"pretest": "npm run build",
"test": "mocha",
"test-browser": "npm run build && karma start --single-run --browsers ${BROWSER:-ChromeHeadless}",
"coverage": "nyc --reporter=lcov --reporter=text npm test"
},
"version": "3.5.0",
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"one-validation": "^2.2.3",
"punycode": "1.3.0",
"unicoderegexp": "0.3.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"istanbul": "0.3.0",
"jshint": "2.5.2",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"unexpected": "^10.40.2"
},
"main": "lib/purify.js",
"repository": {
"type": "git",
"url": "git://github.com/One-com/purify.git"
}
}