-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 933 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
{
"name": "fast-validator",
"version": "1.0.3",
"description": "An extremely fast and Joi like data validator.",
"author": "Alejandro Santiago Nieto",
"license": "MIT",
"dependencies": {
"utjs": "2.x.x"
},
"devDependencies": {
"chai": "3.x.x",
"jscs": "3.x.x",
"jsdoc": "3.x.x",
"jshint": "2.x.x",
"mocha": "3.x.x"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha test/*.js",
"jshint": "jshint index.js lib/*.js test/*.js examples/*.js",
"jscs": "jscs index.js lib/*.js test/*.js examples/*.js",
"jscs:fix": "jscs --fix index.js lib/*.js test/*.js examples/*.js",
"check": "npm run test && npm run jshint && npm run jscs && npm outdated",
"doc": "rm -rf ./doc && jsdoc ./lib/ ./package.json ./README.md -d ./doc"
},
"repository": {
"type": "git",
"url": "https://github.com/alemures/fast-validator"
}
}