-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "blocking-elements",
"version": "0.1.1",
"description": "A polyfill for the proposed blocking elements stack API",
"main": "dist/blocking-elements.js",
"module": "dist/blocking-elements.js",
"author": "Valdrin Koshi <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PolymerLabs/blocking-elements.git"
},
"keywords": [
"blocking-elements",
"polyfill",
"browser"
],
"bugs": {
"url": "https://github.com/PolymerLabs/blocking-elements/issues"
},
"homepage": "https://github.com/PolymerLabs/blocking-elements#readme",
"scripts": {
"lint": "tslint --project ./",
"test": "npm run lint && npm run build && easy-sauce",
"format": "clang-format --style=file -i src/*.ts",
"prepack": "npm run build",
"build": "rm -rf dist/* && tsc && rollup -c"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-polyfill": "^6.26.0",
"chai": "^4.0.2",
"clang-format": "^1.2.4",
"easy-sauce": "^0.4.1",
"mocha": "^6.2.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"wicg-inert": "^2.1.2"
},
"easySauce": {
"testPath": "/test/",
"port": "8080",
"service": "sauce-connect",
"max-duration": 300,
"platforms": [
[
"Windows 10",
"chrome",
"latest"
],
[
"Linux",
"firefox",
"latest"
],
[
"Windows 10",
"microsoftedge",
"latest"
]
]
}
}