-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "mykrobe-atlas-jsonschema",
"version": "0.0.50",
"description": "Mykrobe atlas json schemas",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Mykrobe-tools/mykrobe-atlas-jsonschema.git"
},
"author": "[email protected]",
"private": true,
"files": [
"schemas/",
"lib/",
"LICENSE"
],
"scripts": {
"prettier": "prettier --find-config-path --write 'schemas/**/*.js'",
"prettier-watch": "onchange 'schemas/**/*.js' -- prettier --write {{changed}}",
"build": "babel schemas --presets babel-preset-es2015 --out-dir lib"
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"dependencies": {
"onchange": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"husky": "^1.0.0-rc.9"
}
}