forked from udleinati/redirect.center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "redirect.center",
"description": "Redirect domains using DNS only",
"version": "2.0.0",
"repository": "[email protected]:udleinati/redirect.center.git",
"author": "Udlei Nati <[email protected]>",
"license": "ISC",
"main": "src/index.js",
"scripts": {
"dev": "nodemon -w src",
"start": "node src",
"test": "npm run eslint && PORT=3001 nyc mocha",
"eslint": "eslint src/",
"coverage": "PORT=3001 nyc --reporter html npm test",
"codacy-coverage": "PORT=3001 nyc --reporter lcovonly npm test && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"pm2-start": "pm2 start --name redirect-center src/index.js",
"pm2-status": "pm2 status",
"pm2-log": "pm2 log --raw redirect-center",
"pm2-stop": "pm2 stop redirect-center && pm2 delete redirect-center",
"postinstall": "opencollective-postinstall",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js",
"src/**/*.mock.js"
],
"all": true
},
"dependencies": {
"base32.js": "^0.1.0",
"bluebird": "^3.5.0",
"bunyan": "^1.8.12",
"cuid": "^1.3.8",
"ejs": "^2.5.6",
"express": "^4.15.2",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.0",
"parse-domain": "^1.1.0",
"pm2": "^2.6.1",
"redis": "^2.7.1",
"vhost": "^3.0.2"
},
"devDependencies": {
"all-contributors-cli": "^5.4.1",
"chai": "^4.1.1",
"chai-http": "^4.2.0",
"chai-json-schema": "^1.4.0",
"codacy-coverage": "^2.0.2",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"node-mocks-http": "^1.6.1",
"nodemon": "^1.11.0",
"nyc": "^11.1.0",
"sinon": "^4.0.1"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/redirectcenter"
}
}