-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "backbone.themoviedb",
"version": "0.1.2",
"description": "Models and Collections for https://www.themoviedb.org/",
"main": "dist/backbone.themoviedb.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "webpack",
"compile": "NODE_ENV=production webpack",
"package": "rm -fr dist && npm run build && npm run compile",
"packageOrig": "rm -fr dist && npm run build && npm run compile && git add dist",
"postversion": "git push && git push --tags",
"prepublish": "npm run package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umeboshi2/backbone.themoviedb.git"
},
"keywords": [
"backbone",
"themoviedb"
],
"author": "Joseph Rawson <joseph.rawson.works@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/umeboshi2/backbone.themoviedb/issues"
},
"homepage": "https://github.com/umeboshi2/backbone.themoviedb#readme",
"dependencies": {
"backbone": "^1.4.0",
"backbone.paginator": "^2.0.8"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"coffee-loader": "^0.9.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.4.1",
"expect.js": "^0.3.1",
"jquery": "^3.4.1",
"sinon": "^7.3.2",
"uglifyjs-webpack-plugin": "^2.1.3",
"underscore": "^1.9.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2"
}
}