-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.16 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
{
"maintainers": [
{
"name": "Peter Müller",
"email": "[email protected]"
},
{
"name": "Andreas Lind Petersen",
"email": "[email protected]"
}
],
"name": "one-validation",
"description": "Regexp based validation collection for common internet validation tasks",
"version": "2.2.3",
"repository": {
"url": "git://github.com/One-com/one-validation.git"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {},
"devDependencies": {
"coveralls": "=2.11.1",
"istanbul": "=0.3.0",
"jshint": "=2.5.2",
"mocha": "^10.2.0",
"punycode": ">=0.2.0",
"unexpected": "=3.2.3"
},
"scripts": {
"test": "mocha",
"prepublish": "npm test",
"lint": "jshint .",
"travis": "npm run lint && NODE_ENV=development ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "NODE_ENV=development ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot"
},
"publishConfig": {
"repository": "http://registry.npmjs.org/"
},
"main": "./validation.js"
}