-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "backbone_es6",
"version": "1.0.1",
"description": "Backbone library in ES6 flavor",
"author": "Felipe Figueroa <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/HuasoFoundries/backbone_es6"
},
"bugs": {
"url": "https://github.com/HuasoFoundries/backbone_es6/issues"
},
"homepage": "https://github.com/HuasoFoundries/backbone_es6",
"scripts": {
"test": "karma start && MINIFIED=true karma start"
},
"engines": {
"node": "6.11.2"
},
"keywords": [
"backbone",
"es6",
"es2015"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENCE"
],
"main": "dist/backbone.min.js",
"jsnext:main": "dist/backbone.es6.js",
"module": "dist/backbone.es6.js",
"unpkg": "dist/backbone.min.js",
"jsdelivr": "dist/backbone.min.js",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.10.0",
"karma": "^1.1",
"karma-phantomjs-launcher": "^1",
"karma-qunit": "^1.1.0",
"phantomjs-prebuilt": "^2.1",
"qunitjs": "^1.23",
"rollup": "^0.50.0",
"rollup-plugin-uglify": "^2.0.1"
},
"jspm": {
"registry": "jspm",
"main": "backbone.es6.js",
"format": "esm",
"directories": {
"lib": "dist"
},
"dependencies": {},
"devDependencies": {},
"peerDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.25"
}
}
}