-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 921 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
{
"name": "interface-validator",
"version": "1.1.1",
"description": "Validate JSON objects with TypeScript-like interface specifications.",
"main": "lib/interface-validator.js",
"scripts": {
"test": "mocha",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanlindev/interface-validator.git"
},
"keywords": [
"validator",
"typescript",
"interface"
],
"author": "Han Lin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hanlindev/interface-validator/issues"
},
"homepage": "https://github.com/hanlindev/interface-validator#readme",
"dependencies": {
"@types/lodash": "^4.14.62",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.40",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"types": "./lib/interface-validator.d.ts"
}