-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.08 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": "replay-api",
"version": "1.0.0",
"description": "This repository is intented to store all the replay-api related microservices",
"main": "index.js",
"dependencies": {
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"replay-jobs-service": "^1.0.18",
"replay-rabbitmq": "^1.0.7",
"request": "^2.74.0"
},
"devDependencies": {
"pre-commit": "^1.1.3",
"replay-eslint-config": "*"
},
"scripts": {
"lint": "./lintStagedFiles.sh",
"lintAll": "eslint .",
"test": "mocha ./*/test --recursive",
"coverage": "istanbul cover _mocha ./*/test -- --recursive; sensible-browser coverage/lcov-report/index.html"
},
"eslintConfig": {
"extends": "./node_modules/replay-eslint-config/index.js"
},
"pre-commit": {
"run": "lint",
"colors": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/linnovate/replay-api.git"
},
"author": "replay_team",
"license": "ISC",
"bugs": {
"url": "https://github.com/linnovate/replay-api/issues"
},
"homepage": "https://github.com/linnovate/replay-api#readme"
}