forked from fac-13/PaGiToNi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "pagitoni",
"version": "1.0.0",
"description": "Web app that provides users with frequently updated content on a regular or continuous basis and allows users to search its content.",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/server.js",
"test": "nyc tape ./test/*.test.js | tap-spec",
"test-router": "nyc tape ./test/router.test.js | tap-spec",
"dev": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/PaGiToNi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/PaGiToNi/issues"
},
"homepage": "https://github.com/fac-13/PaGiToNi#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"nock": "^9.2.3",
"nodemon": "^1.17.5",
"nyc": "^13.0.0",
"supertest": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"dependencies": {
"env2": "^2.2.0",
"request": "^2.85.0"
}
}