-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "js-data-redis",
"description": "Redis adapter for js-data.",
"version": "2.3.0",
"homepage": "http://www.js-data.io/docs/dsredisadapter",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-redis.git"
},
"author": {
"name": "Jason Dobry",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/js-data-redis.js",
"keywords": [
"data",
"datastore",
"store",
"database",
"adapter",
"redis"
],
"devDependencies": {
"babel-core": "6.1.4",
"babel-eslint": "4.1.5",
"babel-loader": "6.1.0",
"babel-preset-es2015": "6.1.2",
"bluebird": "3.0.5",
"co-mocha": "1.1.2",
"codacy-coverage": "1.1.3",
"coveralls": "2.11.4",
"istanbul": "0.4.0",
"js-data-adapter-tests": "~1.x",
"mocha": "2.3.3",
"mout": "0.11.1",
"standard": "5.3.1",
"webpack": "1.12.4"
},
"scripts": {
"lint": "standard src/index.js",
"build": "webpack --config webpack.config.js --progress --colors",
"mocha": "mocha --timeout 20000 --reporter dot mocha.start.js",
"cover": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- --timeout 20000 --reporter dot mocha.start.js",
"test": "npm run lint && npm run build && npm run cover",
"ci": "npm run test && cat coverage/lcov.info | coveralls || true && cat ./coverage/lcov.info | codacy-coverage || true"
},
"standard": {
"parser": "babel-eslint"
},
"peerDependencies": {
"js-data": "~2.x",
"redis": ">=0.12.1"
}
}