forked from livoras/simple-virtual-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "simple-virtual-dom",
"version": "0.1.9",
"description": "Basic virtual dom algorithm",
"main": "index.js",
"scripts": {
"test": "standard && npm run cover",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"dev": "nodemon --watch lib --watch test --watch index.js --exec npm test",
"build": "browserify simple-virtual-dom.js -o dist/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livoras/simple-virtual-dom.git"
},
"keywords": [
"virtual-dom"
],
"author": "Livoras",
"license": "MIT",
"bugs": {
"url": "https://github.com/livoras/simple-virtual-dom/issues"
},
"homepage": "https://github.com/livoras/simple-virtual-dom#readme",
"dependencies": {
"list-diff2": "^0.1.4"
},
"devDependencies": {
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"istanbul": "^0.4.3",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"mocha-jsdom": "^1.0.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"standard": "^7.1.2"
}
}