forked from kstf/venkman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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": "venkman",
"version": "2.0.0",
"description": "A simple throttling system",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"test":
"TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register test/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kstf/venkman.git"
},
"bugs": {
"url": "https://github.com/kstf/venkman/issues"
},
"author": "Eric Eslinger",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/core-js": "^0.9.42",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.47",
"@types/redis": "^2.8.0",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.0",
"del": "^3.0.0",
"fakeredis": "^2.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.2.3",
"merge-stream": "^1.0.1",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.2"
},
"dependencies": {
"redis": "^2.8.0"
}
}