-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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": "@klarna/aps-evaluator",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Rickard Bergeling <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/klarna-incubator/aps-evaluator.git"
},
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"lint": "eslint \"./src/**/*.{js,ts}\"",
"lint:fix": "yarn lint --fix",
"test": "TZ=UTC jest",
"test:package": "ts-node ./test/index.ts"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"date-fns": "^2.30.0",
"lodash": "^4.17.21"
},
"volta": {
"node": "20.9.0",
"yarn": "1.22.19"
}
}