-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "vanillajs-virtualdom",
"version": "1.0.0",
"description": "Vanilla JavaScript approach to the virtual DOM implementation",
"main": "src/index.js",
"scripts": {
"watch": "watchify src/index.js -o dist/bundle.js -t babelify -v",
"build": "browserify src/index.js -o dist/bundle.js -t babelify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alperg/vanillajs-virtualdom.git"
},
"keywords": [],
"author": "Alper Gokcehan <mail@alperg.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alperg/vanillajs-virtualdom/issues"
},
"homepage": "https://github.com/alperg/vanillajs-virtualdom#readme",
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "polyfill"
}
]
]
},
"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"
},
"dependencies": {
"virtual-dom": "2.1.1"
}
}