-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "thehoax",
"version": "1.0.0",
"description": "have you ever wondered if something is true but been too embarassed to ask your friends?",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "tape ./tests/test.js | tap-spec",
"t-dif": "tape ./tests/test.js | tap-diff",
"converage": "istanbul cover ./tests/test.js",
"start": "node ./src/server.js",
"devstart": "nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-11/thehoax.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-11/thehoax/issues"
},
"homepage": "https://github.com/FAC-11/thehoax#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"shot": "^3.4.2",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"travis": "^0.1.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"env2": "^2.2.0",
"jsonwebtoken": "^7.4.2",
"pg": "^7.1.0"
}
}