-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 904 Bytes
/
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
{
"name": "tripservicekata",
"version": "1.0.0",
"description": "Kata for a legacy code hands-on session. The objective is to write tests and refactor the given legacy code.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint"
},
"author": "Daniel Perez <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/sandromancuso/trip-service-kata.git"
},
"keywords": [
"kata"
],
"bugs": {
"url": "https://github.com/sandromancuso/trip-service-kata/issues"
},
"homepage": "https://github.com/sandromancuso/trip-service-kata",
"dependencies": {
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-airbnb": "^5.11.2"
}
}