-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 785 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 785 Bytes
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
{
"name": "redirect",
"version": "0.0.1",
"description": "Redirect to a different URL.",
"main": "app.js",
"scripts": {
"start": "node index.js",
"test": "node tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codeforamerica/redirect"
},
"keywords": [
"redirect"
],
"author": "Code for America",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforamerica/redirect/issues"
},
"homepage": "https://github.com/codeforamerica/redirect",
"dependencies": {
"async": "^1.2.1",
"consolidate": "^0.13.1",
"ejs": "^3.1.9",
"express": "^4.17.1",
"mixpanel": "^0.11.0",
"underscore": "^1.13.2"
},
"devDependencies": {
"request": "^2.58.0",
"supertest": "^6.2.2"
}
}