-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
{
"name": "backbone-crux",
"description": "Unmissable patches for Backbone.",
"version": "6.1.2",
"license": "ISC",
"author": "Burhan Zainuddin <burhan@codeyellow.nl>",
"contributors": [
{
"name": "Kees Kluskens",
"email": "kees@codeyellow.nl"
}
],
"repository": {
"type": "git",
"url": "https://github.com/CodeYellowBV/backbone-crux"
},
"bugs": {
"url": "https://github.com/CodeYellowBV/backbone-crux/issues"
},
"scripts": {
"lint": "eslint src",
"build": "rm -f dist/** && rollup -c",
"pretest": "npm run -s build && npm run -s lint",
"test": "ava",
"preversion": "npm run -s test",
"version": "git add -A dist"
},
"files": [
"dist/**"
],
"main": "dist/backbone-crux.js",
"dependencies": {},
"devDependencies": {
"JQDeferred": "^2.1.0",
"ava": "^0.17.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-preset-es2015-rollup": "^3.0.0",
"backbone": "1.3.3",
"backbone-relation": "^0.2.7",
"backbone.marionette": "^2.4.7",
"backbone.paginator": "2.0.5",
"backbone.stickit": "^0.9.2",
"eslint": "^3.3.0",
"eslint-config-codeyellow": "^1.0.0",
"jquery": "^3.1.0",
"jsdom": "^9.4.2",
"jsdom-global": "^2.0.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^1.17.5",
"underscore": "1.8.3"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"./test/helpers/register"
]
}
}