-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
51
52
53
54
{
"name": "property-validator",
"version": "1.0.2",
"description": "Easy property validation for JavaScript, Node and Express.",
"main": "index.js",
"types": "./index.d.ts",
"homepage": "http://github.com/nettofarah/property-validator",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/",
"test-compilation": "examples/node_modules/typescript/bin/tsc ./examples/example_ts.ts",
"precommit": "lint-staged"
},
"bugs": {
"url": "https://github.com/nettofarah/property-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nettofarah/property-validator.git"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"keywords": [
"validation",
"validator",
"property",
"property validation",
"requests",
"express"
],
"author": "Netto Farah",
"license": "MIT",
"devDependencies": {
"express": "^4.13.3",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"mocha": "^2.3.4",
"prettier": "^1.6.1",
"supertest": "^1.1.0"
},
"dependencies": {
"@types/validator": "^12.0.1",
"lodash": "^4.17.15",
"validator": "^12.1.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}