-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "ping-checker",
"version": "1.0.0",
"author": "Achyut Jhunjhunwala",
"description": "API to ping URL by reading them from Excel File",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "node dist/index.js",
"serve": "nodemon lib/index.js --exec babel-node",
"serve:debug": "nodemon --inspect lib/index.js --exec babel-node",
"build": "babel lib -d dist",
"lint": "eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run lint && npm test"
},
"repository": {
"type": "git"
},
"license": "Adidas",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.7.0",
"husky": "^0.14.3",
"jest": "^21.0.2",
"nodemon": "^1.12.0"
},
"dependencies": {
"config": "^1.29.2",
"es6-promise": "^4.2.4",
"excel4node": "^1.4.0",
"forever": "^0.15.3",
"fs": "0.0.1-security",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.10",
"morgan": "^1.8.2",
"ping": "^0.2.2",
"pm2": "^2.9.3",
"promise-polyfill": "^8.0.0",
"read-excel-file": "^2.0.1",
"rx": "^4.1.0",
"rxjs": "^5.5.10",
"uuid": "^3.1.0",
"winston": "^2.3.1"
}
}