-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "marionette-vdom",
"version": "0.2.5",
"description": "Marionette.js views implemented with virtual-dom",
"main": "src/index.js",
"scripts": {
"demo": "beefy samples/demo/demo.js:samples/demo/demo-build.js --live",
"perf": "beefy samples/perf/perf.js:samples/perf/perf-build.js --live",
"test": "node ./node_modules/mocha/bin/_mocha test/",
"cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test/ --report lcovonly -- -R spec",
"view-cover": "node ./node_modules/istanbul/lib/cli.js report html && open ./coverage/index.html",
"travis-test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test/ --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/themindfuldev/marionette-vdom"
},
"keywords": [
"backbone",
"virtual",
"dom",
"vdom",
"view"
],
"author": "Tiago Romero Garcia",
"license": "MIT",
"bugs": {
"url": "https://github.com/themindfuldev/marionette-vdom/issues"
},
"homepage": "https://github.com/themindfuldev/marionette-vdom",
"dependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^3.0.0",
"html-to-vdom": "^0.7.0",
"jquery": "^3.3.1",
"underscore": "^1.9.1",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"beefy": "^2.1.8",
"browserify": "^7.0.3",
"chai": "^1.10.0",
"chai-jq": "0.0.8",
"coveralls": "^3.0.2",
"global-lookup-shim": "~0.1.0",
"istanbul": "^0.3.5",
"jsdom": "9.8.0",
"mocha": "^5.2.0",
"react": "^0.12.2",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"uglify-js": "^2.7.4",
"xmldom": "^0.1.19"
}
}