-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 765 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 765 Bytes
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": "myreact",
"version": "0.1.0",
"description": "DIY modern JavaScript framework based on Virtual DOM",
"main": "index.js",
"scripts": {
"watch": "watchify src/index.js -o lib/bundle.js -t babelify -v",
"build": "browserify src/index.js -o lib/bundle.js -t babelify"
},
"keywords": [],
"author": "Alberto Gimeno <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"watchify": "^3.11.0"
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
},
"dependencies": {
"virtual-dom": "^2.1.1"
}
}