-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 910 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
{
"name": "launchbar-actions",
"version": "1.0.0",
"description": "LaunchBar Actions",
"scripts": {
"build": "./dev/build.sh",
"link": "./dev/link.sh",
"release": "npm run build && ./dev/release.sh",
"start": "onchange -i 'src/**/*' -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirka/launchbar-actions.git"
},
"author": "Lena Morita",
"license": "MIT",
"bugs": {
"url": "https://github.com/mirka/launchbar-actions/issues"
},
"homepage": "https://github.com/mirka/launchbar-actions#readme",
"devDependencies": {
"eslint": "^7.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"markdown-toc": "^1.2.0",
"onchange": "^7.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"README.md": "markdown-toc -i"
}
}