-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 977 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
34
35
{
"name": "ns-eshop-sale",
"version": "0.1.0",
"description": "An unofficial nodejs API for Nintendo Switch eShop on Sale.",
"repository": {
"type": "git",
"url": "https://github.com/rkJun/ns-eshop-sale"
},
"author": "Juntai Park",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts && npm run lint",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit --coverage --verbose"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}