-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "webcomponent",
"version": "1.2.2",
"description": "lightweight helpers for constructing web components",
"main": "build/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "babel lib -d build",
"build-test": "webpack --config test/webpack.config.js",
"prepublish": "npm run build",
"test": "npm run build-test && npm run test-local",
"test-local": "wct --plugin local test/index.html",
"test-p": "wct --plugin local --persistent test/index.html",
"test-sauce": "wct --plugin sauce test/index.html"
},
"repository": {
"type": "git",
"url": "[email protected]:mixpanel/webcomponent.git"
},
"keywords": [
"web components",
"HTMLElement",
"Safari"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixpanel/webcomponent/issues"
},
"homepage": "https://github.com/mixpanel/webcomponent#readme",
"devDependencies": {
"@webcomponents/custom-elements": "^1.0.4",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.6.0",
"web-component-tester": "^5.0.0",
"webpack": "^1.12.9"
}
}