-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
34 lines (34 loc) · 863 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
34
{
"name": "ecma-framer",
"version": "1.0.0",
"description": "Framer Studio, except with JS and your browser",
"license": "MIT",
"author": {
"name": "Andrew Liebchen",
"email": "[email protected]"
},
"scripts": {
"build": "webpack -p",
"clean": "rm public/main.bundle.js public/main.bundle.js.map",
"start": "webpack-dev-server --inline --hot --content-base public/"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"open-browser-webpack-plugin": "0.0.5",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"keywords": [
"webpack",
"babel",
"source map",
"framerjs"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewliebchen/ecma-framer"
}
}