This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.19 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
76
{
"name": "superawesomeredirector",
"version": "0.0.0-development",
"description": "Super simple and super awesome link url redirector that just works.",
"main": "main.js",
"scripts": {
"test": "npm run jest",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"test:codecov": "cat ./coverage/lcon.info | codecov",
"test:all": "npm run test && npm run test:coveralls && npm run test:codecov",
"test:full:dev": "npm run lint && npm run test",
"test:full": "npm run lint && npm run test:all",
"jest": "jest --config jest.config.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"jsdoc": "jsdoc -c jsdoc.config.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/csprayca/superawesomeredirector.git"
},
"keywords": [
"link",
"redirector",
"redictor",
"simple",
"routes",
"simple",
"redirector",
"middleware",
"plugin",
"express",
"social",
"redirect",
"redirection",
"302"
],
"author": "Alex Kluew <info@getaclue.me> (https://getaclue.me)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/csprayca/superawesomeredirector/issues"
},
"homepage": "https://github.com/csprayca/superawesomeredirector#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"commitizen": "^3.0.5",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"semantic-release": "^15.12.4",
"standard": "^12.0.1",
"supertest": "^3.3.0",
"travis-deploy-once": "^5.0.9"
}
}