-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 965 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
29
30
31
32
33
34
35
36
37
38
{
"name": "tv4-formats",
"version": "3.0.3",
"description": "Common JSON Schema string format constraints in the form of tv4 validator callbacks",
"main": "index.js",
"scripts": {
"test": "mocha -b ./tests",
"pretest": "jshint ./src ./tests index.js && jscs ./src ./tests ./index.js && webpack --hide-modules ./index.js dist/tv4-formats-bundle.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ikr/tv4-formats.git"
},
"keywords": [
"json",
"schema",
"validator",
"tv4",
"format"
],
"author": "Ivan Krechetov <ikr@ikr.su>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikr/tv4-formats/issues"
},
"homepage": "https://github.com/ikr/tv4-formats",
"engine": "node >= 0.10",
"devDependencies": {
"jscs": "^3.0.3",
"jshint": "^2.8.0",
"mocha": "^3.0.0",
"webpack": "^3.6.0"
},
"dependencies": {
"moment": "^2.10.6",
"validator": "^13.7.0"
}
}