-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.16 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
{
"name": "tiny-virtual-dom",
"version": "0.0.1",
"description": "Just a tiny virtual dom implementation",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"todo:start": "cd examples/todo && browser-sync start --server --files='index.html, bundle.js'",
"todo:watch": "watchify examples/todo/index.js -o examples/todo/bundle.js -t [ babelify --plugins [transform-react-jsx] ] -d",
"test:start": "cd examples/test && browser-sync start --server --files='index.html, bundle.js, style.css'",
"test:watch": "watchify examples/cards/index.js -o examples/cards/bundle.js -t [ babelify --plugins [transform-react-jsx] ] -d",
"build": "browserify --standalone tiny-virtual-dom lib/index.js > dist/tiny-virtual-dom.js"
},
"dependencies": {
"chai": "^3.5.0",
"global": "^4.3.1",
"mocha": "^3.2.0"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"jsdom": "^9.10.0",
"watchify": "^3.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expalmer/tiny-virtual-dom.git"
},
"author": "Palmer Oliveira",
"license": "MIT"
}