-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
{
"name": "backbone-highway",
"version": "2.1.0",
"description": "Routing Backbone with style \\o/",
"keywords": [
"backbone",
"router",
"highway",
"marionette"
],
"main": "dist/backbone-highway.js",
"scripts": {
"start": "rollup -c rollup.config.js --watch & webpack-dev-server",
"build": "rollup -c rollup.config.js && NODE_ENV=production rollup -c rollup.config.js",
"lint": "standard --verbose src/**/*.js test/**/*.js | snazzy",
"lint-fix": "standard --fix src/**/*.js test/**/*.js",
"test": "karma start karma.conf.js"
},
"dependencies": {
"backbone": "^1.2.3",
"underscore": "^1.8.3",
"url-composer": "^1.14.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.8.0",
"babel-loader": "^7.0.0",
"babel-plugin-resolver": "1.1.0",
"babel-preset-es2015": "^6.6.0",
"chalk": "^2.3.2",
"connect-history-api-fallback": "^1.3.0",
"connect-logger": "0.0.1",
"cz-conventional-changelog": "^2.0.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.17.0",
"jquery": "^3.1.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"lodash": "^4.14.2",
"mocha": "^5.0.5",
"puppeteer": "^1.2.0",
"resolve-url-loader": "^2.0.2",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"snazzy": "^7.0.0",
"standard": "^11.0.1",
"url-loader": "^0.5.7",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/d4f/backbone-highway.git"
},
"author": "Carl OGREN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d4f/highway/issues"
},
"homepage": "https://github.com/d4f/highway#README",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"globals": [
"describe",
"it"
]
}
}