-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "@enkidevs/array-to-map",
"version": "1.0.12",
"description": "Utility for generalized mapping of an array to a map",
"scripts": {
"check-branch": "enkidevs-assert-restricted-branch",
"format": "prettier --write 'src/**/*.js'",
"lint:ci": "CI=true eslint . --ignore-path .gitignore --quiet",
"lint": "eslint . --ignore-path .gitignore",
"prepare": "npm run lint",
"test:ci": "NODE_ENV=test CI=true jest --coverage",
"test": "NODE_ENV=test jest --notify"
},
"main": "src/index.js",
"files": [
"src/index.js"
],
"homepage": "https://github.com/enkidevs/array-to-map",
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/array-to-map.git"
},
"engines": {
"node": "^8.10.0"
},
"keywords": [
"map",
"array",
"hash"
],
"author": "Nemanja Stojanovic <[email protected]>",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js}": [
"npm run check-branch",
"npm run format",
"npm run lint",
"git add"
]
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@enkidevs/assert-restricted-branch": "^1.0.2",
"@enkidevs/eslint-config-backend": "^9.0.0",
"eslint": "^7.2.0",
"husky": "^7.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.0.1"
}
}