-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "nordnet-unofficial-api",
"version": "0.2.9",
"description": "Unofficial api for nordnet.no",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/"
]
},
"scripts": {
"test": "npm run build && jest",
"unit": "npm run test",
"build": "tsc",
"lint": "eslint src --resolve-plugins-relative-to . --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2xic/nordnet-unoffical-api.git"
},
"author": "2xic",
"license": "ISC",
"bugs": {
"url": "https://github.com/2xic/nordnet-unoffical-api/issues"
},
"homepage": "https://github.com/2xic/nordnet-unoffical-api#readme",
"dependencies": {
"bignumber.js": "^9.0.2",
"dayjs": "^1.10.7",
"fetch-session": "^1.1.8",
"inversify": "^6.0.1",
"jest": "^27.5.1",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier-eslint": "^13.0.0"
}
}