forked from marionettejs/backbone.marionette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "backbone.marionette",
"description": "The Backbone Framework",
"version": "4.1.3",
"homepage": "https://marionettejs.com/",
"browser": "lib/backbone.marionette.js",
"main": "lib/backbone.marionette.js",
"module": "lib/backbone.marionette.esm.js",
"jsnext:main": "lib/backbone.marionette.esm.js",
"sideEffects": false,
"browserslist": [
">0.5%",
"Explorer >= 10",
"not op_mini all"
],
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"backbone",
"plugin",
"marionette",
"composite",
"architecture",
"single",
"page",
"app",
"client",
"browser"
],
"license": "MIT",
"scripts": {
"build": "rollup -c --noConflict",
"coverage": "cross-env NODE_ENV=test nyc mocha --config ./test/.mocharc.json && nyc report --reporter=html",
"coveralls": "yarn coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix src/ && eslint --fix test/unit/",
"test": "yarn lint && mocha -w --config ./test/.mocharc.json",
"test-browser": "rollup -c ./test/rollup.config.js -w",
"test-cross-browser": "cross-env NODE_ENV=sauce rollup -c ./test/rollup.config.js",
"test-lodash": "USE_LODASH=1 mocha --config ./test/.mocharc.json"
},
"author": {
"name": "Derick Bailey",
"email": "[email protected]",
"url": "http://derickbailey.com/"
},
"bugs": {
"url": "https://github.com/marionettejs/backbone.marionette/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/marionettejs/backbone.marionette.git"
},
"github": "https://github.com/marionettejs/backbone.marionette",
"dependencies": {
"backbone.radio": "^2.0.0"
},
"peerDependencies": {
"backbone": "^1.3.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/register": "7.4.0",
"babel-plugin-istanbul": "^5.1.0",
"backbone": "^1.3.3",
"chai": "4.2.0",
"chai-jq": "0.0.9",
"coveralls": "3.0.3",
"cross-env": "5.2.0",
"easy-sauce": "0.4.2",
"eslint": "5.16.0",
"jquery": "3.4.0",
"jsdom": "14.0.0",
"lodash": "^4.17.11",
"mocha": "6.1.3",
"nyc": "13.3.0",
"rollup": "1.10.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-browsersync": "1.0.0",
"rollup-plugin-commonjs": "9.3.4",
"rollup-plugin-eslint": "5.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "4.2.3",
"rollup-plugin-terser": "4.0.4",
"sinon": "7.3.1",
"sinon-chai": "3.3.0",
"underscore": "^1.8.3"
}
}