This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
{
"name": "metricating-api",
"version": "1.0.0",
"description": "A system that collects issue tracker data for metric visualization.",
"main": "app/index.js",
"repository": "https://github.com/thoughtworks/metricating-api",
"scripts": {
"build": "babel -d dist/ app",
"start": "npm run build && node dist/index.js",
"test": "jest --testPathIgnorePatterns .stryker-tmp dist/ --watch",
"test-int": "NODE_ENV=test jest --watch -c jest.config.integration.json",
"test-unit-ci": "jest -c jest.config.unit.json --coverage",
"test-int-ci": "jest -c jest.config.integration.json",
"test-mutate": "stryker run",
"awesome": "npm run test-unit-ci && npm run test-int-ci && npx eslint app",
"👌": "npm run awesome",
"lint": "npx eslint app",
"lint-fix": "npx eslint app --fix"
},
"author": "The Metricating Team ❤️",
"license": "MIT",
"dependencies": {
"awilix": "^4.2.2",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-business-days": "^1.1.3",
"request": "^2.88.0",
"swagger-ui-express": "^4.0.7",
"trello": "git+https://github.com/piperamirez/trello.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"acorn": "^6.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-inline-json": "^1.2.2",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.8.0",
"jest-when": "^2.6.0",
"jira-client": "^6.8.0",
"node-mocks-http": "^1.7.6",
"stryker": "^0.35.1",
"stryker-api": "^0.24.1",
"stryker-html-reporter": "^0.18.1",
"stryker-javascript-mutator": "^0.14.1",
"stryker-jest-runner": "^1.4.1",
"supertest": "^4.0.2"
}
}