-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kinvey-backbone-sdk",
"version": "3.8.1",
"description": "Kinvey JavaScript SDK for BackboneJS application.",
"homepage": "http://www.kinvey.com",
"bugs": {
"url": "https://github.com/Kinvey/backbone-sdk/issues"
},
"license": "Apache-2.0",
"author": "Kinvey",
"contributors": [
"Thomas Conner <thomas@kinvey.com>"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:Kinvey/backbone-sdk"
},
"scripts": {
"build": "npm run clean && npm run transpile && npm run bundle && npm run minify",
"bundle": "webpack --config webpack.config.js",
"clean": "rm -rf dist && rm -rf coverage && rm -rf s3",
"minify": "uglifyjs --screw-ie8 --compress warnings=false --mangle --comments --output ./dist/kinvey-backbone-sdk.min.js -- ./dist/kinvey-backbone-sdk.js ",
"cover": "istanbul cover _mocha -- --compilers js:babel-core/register -r babel-polyfill -s 100 --recursive test/unit/setup test/unit",
"docs": "esdoc -c esdoc.json",
"lint": "npm run lint:src",
"lint:src": "eslint src/**",
"lint:test": "eslint test/unit/**",
"preversion": "rm -rf node_modules && npm install && npm test",
"version": "npm run build && git add dist/kinvey-backbone-sdk.js && git add dist/kinvey-backbone-sdk.min.js && git commit -m 'Update dist bundle.'",
"postversion": "git push && git push --tags && rm -rf dist && rm -rf coverage && rm -rf s3",
"s3": "npm run build && shjs ./scripts/s3.js",
"test": "mocha --compilers js:babel-core/register -r babel-polyfill -s 100 --recursive test/unit/setup test/unit",
"test:watch": "mocha -w --compilers js:babel-core/register -r babel-polyfill -s 100 --recursive test/unit/setup test/unit",
"transpile": "babel src --out-dir dist"
},
"dependencies": {
"backbone": "^1.3.3",
"kinvey-js-sdk": "3.8.1",
"kinvey-phonegap-sdk": "3.8.1",
"lodash": "4.17.21"
},
"peerDependencies": {
"kinvey-js-sdk": "3.8.1",
"kinvey-phonegap-sdk": "3.8.1"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.0",
"babel-eslint": "7.1.1",
"babel-plugin-inline-dotenv": "^1.1.1",
"babel-plugin-module-resolver": "2.5.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-2": "^6.0.15",
"babel-register": "6.24.0",
"eslint": "3.17.1",
"eslint-config-airbnb-base": "11.1.1",
"eslint-import-resolver-babel-module": "3.0.0",
"eslint-plugin-import": "2.2.0",
"expect": "^1.20.2",
"express": "4.19.2",
"istanbul": "1.1.0-alpha.1",
"json-loader": "^0.5.4",
"mocha": "3.2.0",
"nock": "9.0.9",
"protractor": "5.1.1",
"regenerator-runtime": "0.10.3",
"shelljs": "0.8.5",
"uglify-js": "2.8.13",
"webdriver-manager": "12.0.4",
"webpack": "^1.13.0"
},
"engines": {
"node": ">=4.0"
},
"keywords": [
"Kinvey",
"JavaScript",
"Backbone"
]
}