forked from WICG/inert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "wicg-inert",
"version": "3.0.1",
"description": "A polyfill for the proposed inert API",
"main": "dist/inert.js",
"module": "src/inert.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "SAUCE=true npm run test",
"test": "npm run build && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WICG/inert.git"
},
"keywords": [
"inert",
"polyfill",
"browser"
],
"author": "Alice Boxhall <alice@chromium.org>",
"contributors": [
"Rob Dodson <robdodson@chromium.org>",
"Jesse Beach",
"Brian Kardell",
"Valdrin Koshi"
],
"bugs": {
"url": "https://github.com/WICG/inert/issues"
},
"homepage": "https://github.com/WICG/inert#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"babel-preset-es3": "^1.0.1",
"chai": "^4.1.2",
"eslint": "^5.0.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-es5": "^1.3.1",
"husky": "^0.14.3",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-polyfill": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"lint-staged": "^7.0.0",
"mocha": "^5.0.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^4.0.0"
}
}