-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 927 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 927 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
34
35
36
37
{
"name": "virtual-dom-counter-example",
"version": "1.0.0",
"description": "counter example for virtual-dom",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipluser/virtual-dom-counter-example.git"
},
"keywords": [
"react",
"virtual-dom",
"virtual dom",
"virtual-dom-library",
"counter"
],
"author": "ipluser",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipluser/virtual-dom-counter-example/issues"
},
"homepage": "https://github.com/ipluser/virtual-dom-counter-example#readme",
"dependencies": {
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}