forked from ABXTrading/epicurus-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "epicurus-node",
"version": "0.3.0",
"description": "Redis request/response and PubSub sugar",
"main": "js/index.js",
"types": "js/index.d.ts",
"files": [
"js/"
],
"scripts": {
"prepublish": "npm run lint && rm -rf js/* && tsc --sourcemap -p ts/",
"lint": "tslint 'ts/**/*.ts'",
"test": "npm run compile && mocha js/**/*.spec.js",
"compile": "npm run lint && rm -rf js/* && tsc --sourcemap -p ts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ABXTrading/epicurus-node.git"
},
"keywords": [
"Redis"
],
"author": "ABX",
"license": "ISC",
"bugs": {
"url": "https://github.com/ABXTrading/epicurus-node/issues"
},
"homepage": "https://github.com/ABXTrading/epicurus-node#readme",
"dependencies": {
"@types/bluebird": "3.5.20",
"@types/redis": "2.8.6",
"@types/uuid": "3.4.3",
"@types/node": "8.0.20",
"bluebird": "3.5.0",
"redis": "2.7.1",
"uuid": "3.2.1"
},
"devDependencies": {
"@types/chai": "4.0.3",
"@types/mocha": "2.2.41",
"chai": "4.0.1",
"typescript": "2.8.1",
"tslint": "5.5.0",
"mocha": "3.5.0"
}
}