-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.42 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
{
"name": "marionette",
"description": "The Composite Javascript Framework",
"version": "5.0.0-alpha.2",
"homepage": "https://marionettejs.com/",
"browser": "lib/marionette.umd.js",
"main": "index.js",
"module": "index.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": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix src/ && eslint --fix test/unit/",
"test": "npm run 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"
},
"bugs": {
"url": "https://github.com/marionettejs/marionette/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/marionettejs/marionette.git"
},
"github": "https://github.com/marionettejs/marionette",
"peerDependencies": {
"underscore": "^1.11.0"
},
"optionalDependencies": {
"backbone": "1.4.0"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"@babel/register": "7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-eslint": "^8.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"babel-plugin-istanbul": "^6.0.0",
"backbone": "^1.4.0",
"chai": "4.2.0",
"chai-jq": "0.0.9",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"easy-sauce": "0.4.2",
"eslint": "7.13.0",
"jquery": "3.5.1",
"jsdom": "16.4.0",
"lodash": "^4.17.20",
"mocha": "8.2.1",
"nyc": "15.1.0",
"rollup": "2.33.1",
"rollup-plugin-browsersync": "1.3.1",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "9.2.1",
"sinon-chai": "3.5.0",
"underscore": "^1.11.0"
}
}