-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "nodevoto",
"version": "5.3.0",
"description": "Node.js implementation of emojivoto with gifs instead of emojis",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit-tests && echo 'done.'",
"unit-tests": "NODE_ENV=test node_modules/mocha/bin/_mocha test/**/*.test.js",
"lint": "node_modules/.bin/eslint . --max-warnings=0 --report-unused-disable-directives",
"generateEmojiCodeMap": "node scripts/generateEmojiCodeMap.js",
"generateGiphyMap": "node scripts/generateGiphyMap.js",
"voting": "node services/nodevoto-voting/server.js",
"gif": "node services/nodevoto-gif/server.js",
"web": "node services/nodevoto-web/server.js",
"voteBot": "node services/nodevoto-web/voteBot.js"
},
"author": "Sebastian Tiedtke <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"express": "^4.16.3",
"grpc": "^1.14.1",
"superagent": "^3.8.3",
"swagger-ui-express": "^4.0.1",
"lodash": ">=4.17.11",
"winston": "^3.1.0",
"yamljs": "^0.3.0",
"js-yaml": ">=3.13.1"
},
"devDependencies": {
"eslint": "^5.4.0",
"mocha": "^5.2.0"
}
}