-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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
{
"name": "rankist-api",
"version": "0.0.0-development",
"description": "the best place to found and create ranking lists",
"main": "src/index.js",
"scripts": {
"start": "nodemon ./src/index.js",
"pretest": "eslint src --fix",
"test:unit": "ava src/**/__tests__/**/*.test.js -s",
"test": "cross-env NODE_ENV=test nyc npm run test:unit",
"posttest": "nyc report --reporter=html",
"semantic-release": "[[ $(git rev-parse --abbrev-ref HEAD) == \"master\" ]] && semantic-release pre && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/voiders/rankist-api.git"
},
"author": "Jose Albizures <albizures3601@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/voiders/rankist-api/issues"
},
"homepage": "https://github.com/voiders/rankist-api#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cross-env": "^5.0.5",
"express": "^4.15.4",
"get-port": "^3.2.0",
"helmet": "^3.8.1",
"joi": "^10.6.0",
"log": "^1.4.0",
"logger": "0.0.1",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"rethinkdb": "^2.3.3",
"sinon": "^3.2.1"
},
"devDependencies": {
"@pixore/eslint-config": "^1.4.0",
"ava": "^0.22.0",
"chai": "^4.1.2",
"eslint": "^4.6.0",
"nodemon": "^1.11.0",
"nyc": "^11.1.0",
"supertest": "^3.0.0",
"semantic-release": "^7.0.2"
},
"nyc": {
"check-coverage": true,
"per-file": false,
"statements": 92,
"branches": 75,
"functions": 85,
"lines": 91
},
"ava": {
"failWithoutAssertions": false
}
}