-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"private": true,
"name": "marionette.routing",
"version": "1.1.1",
"description": "A state based router for MarionetteJS applications",
"homepage": "https://github.com/blikblum/marionette.routing",
"repository": "blikblum/marionette.routing",
"author": "Luiz Américo Pereira Câmara",
"contributors": [
"Luiz Américo Pereira Câmara"
],
"license": "MIT",
"keywords": [],
"main": "marionette.routing.js",
"jsnext:main": "marionette.routing.esm.js",
"module": "marionette.routing.esm.js",
"sideEffects": false,
"dependencies": {
"cherrytreex": "^3.3.0"
},
"peerDependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^4.0.0",
"backbone.radio": "^2.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"backbone": "^1.3.3",
"backbone.marionette": "^4.0.0",
"backbone.radio": "^2.0.0",
"chai": "^4.2.0",
"del": "^3.0.0",
"jquery": "^3.3.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.1.0",
"karma-sinon-chai": "^2.0.2",
"mocha": "^5.2.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"standard": "^12.0.1",
"underscore": "^1.8.3"
},
"scripts": {
"lint": "standard \"test/**/*.js\" \"src/**/*.js\"",
"test": "karma start",
"test:debug": "karma start --browsers ChromeDebugging --no-single-run",
"build": "npm run lint && node tools/build",
"prepublishOnly": "npm run build"
}
}