-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "wartsila-take-home",
"version": "0.1.0",
"description": "Take home coding exercise for Wartsila",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"config": {
"audit_level": "null"
},
"scripts": {
"audit": "npm audit --production --audit-level=$npm_package_config_audit_level",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"check-types": "tsc --noEmit",
"clean": "rimraf dist",
"qc": "npm run audit && npm run check-types && npm test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etavela/wartsila-take-home.git"
},
"author": "Eric Tavela",
"bugs": {
"url": "https://github.com/etavela/wartsila-take-home/issues"
},
"homepage": "https://github.com/etavela/wartsila-take-home#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.0.2",
"@types/node": "^16.11.45",
"jest": "^29.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"commander": "^9.4.0",
"csv-parse": "^5.3.0",
"dayjs": "^1.11.5"
}
}