-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 943 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
39
40
{
"name": "@tradle/validate-model",
"version": "7.1.42",
"description": "validate models for your Tradle bot",
"main": "index.js",
"bin": "bin/validate-model",
"repository": {
"type": "git",
"url": "https://github.com/tradle/validate-model"
},
"author": "mvayngrib",
"license": "MIT",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "tape test/index.js",
"lint": "standard"
},
"pre-commit": [
"lint",
"test"
],
"peerDependencies": {
"@tradle/models": "*"
},
"devDependencies": {
"@tradle/custom-models": "github:tradle/custom-models",
"@tradle/models": "github:tradle/models",
"pre-commit": "^1.2.2",
"standard": "^17.0.0",
"tape": "^5.5.3"
},
"dependencies": {
"@tradle/constants": "^2.5.1",
"@tradle/merge-models": "^3.0.0",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"minimist": "^1.2.6",
"typeforce": "^1.10.6"
}
}