forked from js-data/js-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.39 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
{
"name": "js-data",
"description": "Robust, framework-agnostic in-memory data store.",
"version": "2.10.0",
"homepage": "http://www.js-data.io",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data.git"
},
"author": {
"name": "Jason Dobry",
"url": "http://www.pseudobry.com",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/js-data-debug.js",
"keywords": [
"orm",
"odm",
"model",
"schema",
"rest",
"angular",
"ember",
"backbone",
"react",
"firebase",
"datastore",
"store",
"database",
"adapter",
"http",
"localstorage"
],
"devDependencies": {
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"chai": "3.5.0",
"codacy-coverage": "2.0.0",
"coveralls": "2.11.14",
"es6-promise": "3.3.1",
"karma": "1.3.0",
"karma-browserstack-launcher": "1.1.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-junit-reporter": "1.1.0",
"karma-mocha": "1.1.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.5",
"mocha": "3.0.2",
"mout": "1.0.0",
"sinon": "1.17.6",
"standard": "8.1.0",
"uglify-js": "2.7.3",
"webpack": "1.13.2",
"yabh": "1.2.0"
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"lint": "standard src/**/*.js",
"bundle": "webpack --config webpack.config.js --colors",
"min": "uglifyjs dist/js-data.js -o dist/js-data.min.js --source-map dist/js-data.min.map -v -m -c --screw-ie8",
"debug": "node scripts/debug.js",
"version": "node scripts/version.js",
"banner": "node scripts/banner.js",
"gzip": "echo gzipped size: $(cat dist/js-data.min.js | gzip -f9 | wc -c)kb",
"build": "npm run lint && npm run bundle && npm run debug && npm run min && npm run version && npm run banner && npm run gzip",
"karma": "karma start",
"mocha": "mocha -t 20000 -R dot mocha.start.js test/both/* test/both/datastore/* test/both/datastore/async_methods/* test/both/datastore/sync_methods/*",
"test": "npm run build && npm run mocha && npm run karma",
"ci": "npm test && cat ./coverage/PhantomJS*/lcov.info | coveralls || true && cat ./coverage/PhantomJS*/lcov.info | codacy-coverage || true"
}
}