-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.2 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
{
"name": "backbone.sciatic",
"version": "0.5.1",
"description": "A Promise-based routing solution for Backbone, with separate Route constructor. Largely influenced by Backbone.PremiumRouter and Backbone.Blazer",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/PledgeIt/backbone.sciatic.git"
},
"bugs": {
"url": "https://github.com/PledgeIt/backbone.sciatic/issues"
},
"scripts": {
"minify": "uglifyjs ./dist/backbone.sciatic.js -o ./dist/backbone.sciatic.min.js",
"build": "rm -rf ./dist/ && webpack ./src/index.js ./dist/backbone.sciatic.js && npm run minify",
"transpile": "rm -rf ./lib/ && babel src --out-dir lib --presets=es2015,stage-2 --plugins=add-module-exports,transform-runtime",
"test": "rm -rf ./coverage/ && karma start",
"prepublish": "npm run transpile && npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.8.0",
"isparta-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-threshold-reporter": "^0.1.15",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0",
"uglifyjs": "^2.4.10",
"webpack": "^1.14.0"
},
"dependencies": {
"backbone": "^1.3.3",
"backbone.base-router": "^1.3.2",
"jquery": "^3.1.1",
"underscore": "^1.8.3"
}
}