-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "custom-event-polyfill",
"version": "1.0.0",
"author": "Evan Krambuhl <[email protected]>",
"contributors": [
"Mozilla Developer Network",
"Kumar Harsh <[email protected]>",
"Frank Panetta (http://www.savvi.io)",
"Mikhail Reenko <[email protected]>",
"Joscha Feth <[email protected]> (http://www.feth.com)"
],
"license": "MIT",
"keywords": [
"polyfill",
"custom-event",
"CustomEvent",
"Web API Interface"
],
"main": "polyfill.js",
"files": [
"polyfill.js"
],
"repository": {
"type": "git",
"url": "[email protected]:kumarharsh/custom-event-polyfill.git"
},
"scripts": {
"test": "karma start",
"test-ci": "karma start ./karma.conf-ci.js",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"eslint": "4.19.1",
"eslint-plugin-prettier": "2.6.0",
"husky": "^0.14.3",
"jasmine-core": "^3.1.0",
"karma": "^4.0.1",
"karma-jasmine": "^1.1.2",
"karma-sauce-launcher": "^2.0.2",
"prettier": "1.12.1",
"semantic-release": "^15.4.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}