-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.02 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.02 KB
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
{
"name": "@nst-guide/schema",
"version": "0.1.0",
"description": "This repository holds JSON Schemas to validate each of the tables of the project.",
"main": "index.js",
"files": [
"index.js",
"schemas/*.json"
],
"directories": {
"test": "tests"
},
"dependencies": {
"ajv": "^6.10.2"
},
"devDependencies": {
"glob": "^7.1.6",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nst-guide/schema.git"
},
"author": "Kyle Barron <kylebarron2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nst-guide/schema/issues"
},
"homepage": "https://github.com/nst-guide/schema",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && jest"
}
},
"jest": {
"testRegex": "./tests/.*.js$",
"rootDir": ".",
"roots": [
"."
],
"modulePaths": [
"."
]
}
}