-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "dino-sprint-namer",
"version": "2.1.1",
"description": "Provides a dinosaur sprint name in the format of `<adjective> <dinosaur>`.",
"main": "lib.js",
"bin": "cli.js",
"scripts": {
"format": "prettier --write \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watchAll",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/edm00se/dino-sprint-namer.git"
},
"keywords": [],
"author": "Eric McCormick (https://edm00se.codes/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/edm00se/dino-sprint-namer/issues"
},
"homepage": "https://github.com/edm00se/dino-sprint-namer",
"dependencies": {
"chalk": "^4.1.2",
"meow": "^9.0.0",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.2.1",
"prettier": "^2.6.2",
"semantic-release": "^21.0.1"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add",
"npm test",
"prettier --write"
]
}
}