-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "etcnome",
"version": "0.0.4",
"main": "main.js",
"scripts": {
"prestart": "node scripts/build-parser.js lib/interpreter/parser.{jison,js}",
"start": "electron ."
},
"description": "programmable metronome",
"repository": {
"type": "git",
"url": "git+https://github.com/jrkatz/etcnome.git"
},
"keywords": [
"programmable",
"metronome",
"electron",
"etcnome"
],
"author": "Jacob Katz",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jrkatz/etcnome/issues"
},
"homepage": "https://github.com/jrkatz/etcnome#readme",
"devDependencies": {
"electron": "^11.0.3",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"jison": "^0.4.18",
"lint-staged": "^10.5.2",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
}
}