forked from WICG/inert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "wicg-inert",
"version": "1.1.4",
"description": "A polyfill for the proposed inert API",
"main": "dist/inert.js",
"scripts": {
"lint": "eslint src/*.js",
"test": "npm run lint && npm run build && easy-sauce",
"build": "rollem",
"dev": "rollem --watch",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WICG/inert.git"
},
"keywords": [
"inert",
"polyfill",
"browser"
],
"author": "Alice Boxhall <[email protected]>",
"contributors": [
"Rob Dodson <[email protected]>",
"Jesse Beach",
"Brian Kardell"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WICG/inert/issues"
},
"homepage": "https://github.com/WICG/inert#readme",
"dependencies": {
"dom-matches": "^2.0.0",
"mutation-observer": "^1.0.2"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"chai": "^4.0.2",
"del": "^3.0.0",
"easy-sauce": "^0.4.1",
"eslint": "^4.0.0",
"eslint-config-google": "^0.8.0",
"mocha": "^3.1.2",
"rollem": "^1.11.0",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.0.0",
"whatwg-fetch": "^2.0.3"
},
"easySauce": {
"username": "robdodson_inert",
"key": "a844aee9-d3ec-4566-94e3-dba3d0c30248",
"testPath": "/test/",
"port": "8080",
"service": "sauce-connect",
"platforms": [
[
"Windows 10",
"chrome",
"latest"
],
[
"Linux",
"firefox",
"latest"
],
[
"OS X 10.11",
"safari",
"10"
]
]
}
}