-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "radicchio",
"version": "1.1.2",
"description": "A distributed timer implemented with Redis and Lua",
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "grunt lint",
"test": "grunt unit-test",
"unit-test": "grunt unit-test",
"lint": "grunt lint",
"watch": "grunt watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erickipnis/Radicchio.git"
},
"author": "Eric Kipnis",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/erickipnis/Radicchio/issues"
},
"homepage": "https://github.com/erickipnis/Radicchio#readme",
"dependencies": {
"bluebird": "^3.1.1",
"event-emitter": "^0.3.4",
"ioredis": "^1.13.0",
"lodash": "^3.10.1",
"node-uuid": "^1.4.7",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^17.3.1",
"grunt-mocha-test": "^0.12.7",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.3.4"
}
}