-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "@sherex/sbanken",
"version": "1.1.0",
"description": "A node module written in Typescript for interacting with SBanken's API",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"dev": "ts-node",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"spec:update-all": "ts-node tools/update-specs.ts",
"spec:lint": "eslint src/types/*.types.ts",
"spec:lint:fix": "eslint --fix src/types/*.types.ts",
"test": "npm run lint"
},
"keywords": [
"sbanken",
"s-banken",
"bank",
"banken",
"api",
"client",
"node",
"typescript",
"javascript"
],
"author": "Ingar Helgesen (https://github.com/sherex)",
"license": "MIT",
"devDependencies": {
"@manifoldco/swagger-to-ts": "2.0.0",
"@types/node": "14.14.32",
"@typescript-eslint/eslint-plugin": "4.16.1",
"dotenv": "8.2.0",
"eslint": "7.21.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"ts-node": "^9.1.1",
"typescript": "4.2.3"
},
"dependencies": {
"axios": "0.21.1"
}
}