forked from lmmfranco/nintendo-switch-eshop
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
82 lines (82 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nintendo-switch-eshop",
"version": "2.2.0",
"description": "Unofficial API lib for Nintendo Switch eShop game listing and pricing information.",
"author": "lmmfranco",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"runkitExampleFilename": "./dist/example.js",
"homepage": "https://github.com/lmmfranco/nintendo-switch-eshop",
"repository": {
"type": "git",
"url": "git+https://github.com/lmmfranco/nintendo-switch-eshop.git"
},
"bugs": {
"url": "https://github.com/lmmfranco/nintendo-switch-eshop/issues/new"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prebuild": "yarn lint && yarn test && yarn clean",
"build": "rollup -c rollup.config.ts",
"postbuild": "yarn copyfiles",
"start": "yarn build -w",
"prepublishOnly": "yarn build && yarn docs",
"clean": "rimraf ./dist",
"predocs": "yarn docs:clean && yarn lint && yarn docs:build",
"docs": "jsdoc2md --template ./docs/template.hbs --files ./docsbuild/*.js --example-lang ts > ./README.md",
"postdocs": "yarn docs:replace && yarn docs:clean",
"docs:clean": "rimraf ./docsbuild",
"docs:build": "tsc -p ./tsconfig.docs.json",
"docs:replace": "replace --silent \".<\" \"<\" ./README.md",
"copyfiles": "copyfiles -u 1 ./docs/example.js ./dist"
},
"keywords": [
"eshop",
"switch",
"nintendo",
"crawler",
"lib"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"peerDependencies": {},
"dependencies": {
"@favware/querystring": "^2.0.3",
"@types/country-data": "^0.0.1",
"country-data": "^0.0.31",
"fast-xml-parser": "^3.12.19",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@favware/eslint-config": "^1.0.0",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.9",
"@types/node-fetch": "^2.5.0",
"common-tags": "^1.8.0",
"copyfiles": "^2.1.1",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^5.0.0",
"replace": "^1.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.18.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-terser": "5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"files": [
"dist/"
]
}