-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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": "eggs",
"version": "0.2.4",
"description": "An isomorphic html data binding module, part of the mise.js suite.",
"repository": {
"type": "git",
"url": "https://github.com/misejs/eggs.git"
},
"main": "lib/eggs.js",
"scripts": {
"test": "mocha --reporter spec --bail --slow 700 --check-leaks test/server.js",
"test-browser": "zuul --local 8080 --open -- test/browser.js",
"test-browser-cloud": "zuul -- test/browser.js",
"test-travis-server": "./node_modules/.bin/mocha --reporter spec --bail --check-leaks test/server.js",
"test-travis-browser": "zuul -- test/browser.js"
},
"keywords": [
"data",
"binding",
"mise.js"
],
"author": "Jesse Ditson <jesse.ditson@gmail.com>",
"license": "ISC",
"dependencies": {
"async": "^0.9.0",
"html-to-vdom": "jesseditson/html-to-vdom#master",
"observe-js": "^0.4.2",
"setimmediate": "^1.0.2",
"vdom-to-html": "~1.2.5",
"vdom-virtualize": "jesseditson/vdom-virtualize#custom_attributes",
"virtual-dom": "~1.3.0",
"vtree-select": "~1.1.1"
},
"devDependencies": {
"express": "^4.11.2",
"jquery": "^2.1.1",
"mocha": "^2.1.0",
"supertest": "^0.15.0",
"zuul": "^1.16.3"
}
}