-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.17 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
{
"name": "fac-community",
"version": "1.0.0",
"description": "![FAC](https://media.licdn.com/media/p/8/005/0a3/300/0f370ec.png) ## Our idea: ### The problem: We noticed that Github is not a social environment, and also Gitter messages is not always sutible to use, on the other hand the social networks (like Facebook, twitter) is better for connection and making relationships, but also we can't explore others protoflio for example.",
"main": "index.js",
"nyc": {
"include": [
"src/**/**/*.js"
],
"all": true
},
"scripts": {
"testt": "NODE_ENV=test istanbul cover tape src/tests/*.test.js | tap-spec",
"test-cov": "NODE_ENV=test node src/tests/routes.test.js | tap-spec",
"start": "NODE_ENV=development node src/index.js",
"watch": "NODE_ENV=test nodemon src/index.js",
"build:db": "NODE_ENV=test node src/model/database/dbBuild.js",
"test": "NODE_ENV=test tape src/tests/*.test.js | tap-spec",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACG2/Fac-Community.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG2/Fac-Community/issues"
},
"homepage": "https://github.com/FACG2/Fac-Community#readme",
"dependencies": {
"body-parser": "^1.18.1",
"cookie-parser": "^1.4.3",
"crypto": "^1.0.1",
"env": "0.0.2",
"env2": "^2.2.0",
"eslint-config-semistandard": "^11.0.0",
"express": "^4.15.4",
"express-handlebars": "^3.0.0",
"jsonwebtoken": "^8.0.1",
"morgan": "^1.8.2",
"pg": "^7.3.0",
"request": "^2.81.0",
"rotating-file-stream": "^1.3.2"
},
"devDependencies": {
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}