-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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": "ioredis-utils",
"version": "1.5.1",
"description": "A handful of utilities for ioredis",
"main": "lib/index.js",
"author": "Braden R. Napier",
"license": "MIT",
"reveal": true,
"files": ["lib", "flowlibs", "extras"],
"repository": {
"type": "git",
"url": "https://github.com/Dash-OS/ioredis-utils/"
},
"keywords": ["ioredis", "redis", "utilities", "lua", "parse", "flow"],
"scripts": {
"flow": "flow",
"build":
"cross-env NODE_ENV=production rimraf lib registry && npm-run-all prebuild:* && npm-run-all -p build:**",
"prebuild:lua": "./utils/build-lua",
"build:src:babel": "babel src/main --out-dir lib",
"build:extras:babel": "babel src/extras --out-dir extras",
"build:src:flow": "flow-copy-source src/main lib",
"build:extras:flow": "flow-copy-source src/extras extras",
"prepublish": "npm-run-all build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.2.0",
"cross-env": "^5.1.1",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.59.0",
"flow-copy-source": "^1.2.1",
"ioredis": "^3.2.1",
"ioredis-utils": "^1.4.3",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"task-handler": "^1.0.13"
},
"peerDependencies": {
"ioredis": "^3.2.1",
"task-handler": "^1.0.13"
}
}