-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 2.35 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
{
"name": "marionette.toolkit",
"version": "6.3.0",
"description": "A collection of opinionated Backbone.Marionette extensions for large scale application architecture.",
"main": "dist/marionette.toolkit.js",
"module": "dist/marionette.toolkit.esm.js",
"jsnext:main": "dist/marionette.toolkit.esm.js",
"sideEffects": false,
"browserslist": [
">0.5%",
"Explorer >= 10",
"not op_mini all"
],
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"build": "rollup -c --noConflict",
"coverage": "cross-env NODE_ENV=test nyc mocha --config ./test/.mocharc.json && nyc report --reporter=html",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/RoundingWellOS/marionette.toolkit.git"
},
"keywords": [
"backbone.marionette",
"marionette",
"marionettejs",
"backbone",
"backbonejs",
"toolkit",
"app",
"subapp",
"component",
"state"
],
"author": "Paul Falgout <paul@otterball.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RoundingWellOS/marionette.toolkit/issues"
},
"homepage": "https://github.com/RoundingWellOS/marionette.toolkit",
"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",
"backbone.marionette": "^4.0.0",
"chai": "4.2.0",
"chai-jq": "0.0.9",
"cross-env": "^5.2.0",
"eslint": "5.16.0",
"jquery": "3.4.0",
"jsdom": "14.0.0",
"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"
},
"peerDependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^4.0.0",
"underscore": "^1.8.3"
}
}