-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
72 lines (72 loc) · 1.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "snake-names",
"version": "1.0.9",
"description": "Get popular snake names",
"main": "src/index.js",
"bin": "src/cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"precommit": "lint-staged",
"test": "jest --ci --coverage && codecov",
"release": "auto shipit --base-branch=master"
},
"keywords": [
"random",
"snake",
"names",
"funny",
"cute",
"word",
"words",
"list",
"array",
"rand",
"animal",
"name",
"female",
"male",
"unique",
"famous",
"badass"
],
"author": "Murshid Azher <[email protected]> (https://murshidazher.com/)",
"repository": {
"type": "git",
"url": "https://github.com/murshidazher/snake-names.git"
},
"license": "MIT",
"dependencies": {
"flat-zip": "^1.0.1",
"meow": "^13.0.0",
"unique-random-array": "4.0.0"
},
"devDependencies": {
"auto": "11.3.0",
"codecov": "3.8.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"prettier": "3.3.2"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc",
"git add"
]
}
}