-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 974 Bytes
/
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
{
"name": "voting-server",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "mocha --compilers js:babel/register --require ./test/test_helper.js --recursive",
"test:watch": "npm run test -- --watch"
},
"author": "kordano",
"license": "BSD-2-Clause",
"dependencies": {
"babel": "~5.8.23",
"chai": "~3.3.0",
"immutable": "^3.7.5",
"mocha": "~2.3.3",
"redux": "^3.0.0",
"socket.io": "^1.3.7"
},
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^3.3.0",
"chai-immutable": "^1.3.0",
"mocha": "^2.3.3"
},
"description": "Lunch voting server",
"repository": {
"type": "git",
"url": "https://github.com/lambda-kollektiv/voting-server.git"
},
"keywords": [
"recommender",
"javascript",
"react",
"redux",
"immutable"
],
"bugs": {
"url": "https://github.com/lambda-kollektiv/voting-server/issues"
}
}