-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
{
"name": "promise-polyfill",
"version": "0.2.0",
"description": "yet, another polyfill implement Promise/A+",
"main": "Promise.js",
"files": [
"es",
"lib",
"native"
],
"scripts": {
"test": "promises-aplus-tests Promise.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/huang-xiao-jian/promise-polyfill.git"
},
"keywords": [
"Promise A+"
],
"author": "huang.jian <[email protected]>",
"contributors": [
{
"name": "huang.jian",
"email": "[email protected]"
},
{
"name": "yang.yuncai",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/huang-xiao-jian/promise-polyfill/issues"
},
"homepage": "https://github.com/huang-xiao-jian/promise-polyfill#README",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/node": "^12.0.2",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.0",
"prettier": "^1.14.3",
"pretty-quick": "^2.0.0",
"promises-aplus-tests": "^2.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}