forked from RevillWeb/wc-styling-investigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 937 Bytes
/
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
{
"name": "wc-styling-investigation",
"version": "1.0.0",
"description": "Repo used for investigations on Web Component styling methods.",
"main": "index.html",
"scripts": {
"transpile": "babel --presets es2015 drop-select/src/drop-select.js --out-file drop-select/dist/drop-select.js",
"serve": "http-server -p 8080 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RevillWeb/wc-styling-investigation.git"
},
"author": "Leon Revill",
"license": "MIT",
"bugs": {
"url": "https://github.com/RevillWeb/wc-styling-investigation/issues"
},
"homepage": "https://github.com/RevillWeb/wc-styling-investigation#readme",
"devDependencies": {
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"http-server": "^0.9.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign"
]
}
}