-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.76 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
53
54
55
56
57
{
"name": "commits-miner",
"version": "0.0.2",
"description": "A tool for applying task on each commit of a project",
"bin": "./command-line/index.js",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha specs/",
"server": "node server/index.js",
"server-pm2": "./node_modules/.bin/pm2 start server/index.js",
"client": "./node_modules/.bin/http-server ./web-client/build",
"postinstall": "cd ./web-client&&npm i&&npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateusfreira/commits-miner.git"
},
"author": "Mateus <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/mateusfreira/commits-miner/issues"
},
"homepage": "https://github.com/mateusfreira/commits-miner#readme",
"dependencies": {
"async": "^2.6.0",
"big-json": "^2.0.0",
"bluebird": "^3.5.1",
"commander": "^2.13.0",
"config": "^1.30.0",
"http-server": "^0.11.1",
"lodash": "^4.17.4",
"log4js": "^2.5.2",
"mongoose": "^5.0.12",
"pm2": "^2.9.3",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"restify": "^6.3.4",
"senti-strength-node": "^1.0.0",
"sentiment": "^5.0.0",
"should": "^13.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"nock": "^9.1.6",
"sinon": "^4.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0"
}
}