-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "vue-backbone",
"version": "0.1.3",
"description": "Vue.js Plugin to facilitate Backbone integration",
"main": "dist/vue-backbone.js",
"module": "src/vue-backbone.js",
"scripts": {
"pretest": "eslint src/*.js test/*.js",
"test": "karma start",
"debug": "karma start --no-single-run --reporters kjhtml --browsers Chrome",
"build": "webpack",
"postbuild": "uglifyjs dist/vue-backbone.js -cmo dist/vue-backbone.min.js --comments",
"prettier": "prettier --print-width 100 --write src/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikeapr4/vue-backbone.git"
},
"keywords": [
"vue",
"backbone"
],
"author": "Michael Gallagher",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikeapr4/vue-backbone/issues"
},
"homepage": "https://github.com/mikeapr4/vue-backbone#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-preset-es2015": "^6.24.1",
"backbone": "^1.3.3",
"eslint": "^3.19.0",
"jasmine-core": "^2.6.2",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.2.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"prettier": "^1.4.2",
"uglify-js": "^3.0.9",
"vue": "^2.3.3",
"webpack": "^2.5.1"
},
"peerDependencies": {
"backbone": ">= 1.0.0",
"vue": ">= 2.0.0"
},
"files": [
"dist/*.js"
]
}