forked from JamieSlome/polyfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "polyfig",
"version": "1.4.0",
"description": "A simple JavaScript utility library",
"main": "index.js",
"scripts": {
"test": "mocha ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamieSlome/polyfig.git"
},
"keywords": [
"polyfig",
"javascript",
"simple",
"utilities"
],
"author": "Jamie Slome <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamieSlome/polyfig/issues"
},
"homepage": "https://github.com/JamieSlome/polyfig#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"mocha": "^8.2.1"
},
"husky": {
"hooks": {
"pre-commit": "echo A retired magic elf is checking all commits...",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}