forked from tombatossals/chords-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
55
56
57
{
"name": "@tombatossals/chords-db",
"version": "0.5.1",
"description": "Instrument Chords Database",
"main": "index.js",
"scripts": {
"test": "jest src",
"stdout": "babel-node src/generate",
"build": "babel-node src/generate json",
"precommit": "lint-staged",
"prepublish": "npm run build",
"prettier": "prettier --single-quote --write \"src/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tombatossals/chords-db.git"
},
"keywords": [
"music",
"node",
"javascript"
],
"author": {
"name": "David Rubert",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tombatossals/chords-db/issues"
},
"homepage": "https://github.com/tombatossals/chords-db#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5"
},
"jest": {
"verbose": false,
"bail": true
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}