-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "@themeparks/parksapi",
"type": "module",
"version": "1.2.40",
"description": "",
"engines": {
"npm": ">=6",
"node": ">=22"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./park": "./lib/parks/park.js",
"./parkTypes": "./lib/parks/parkTypes.js",
"./cache/": "./lib/cache/",
"./cache": "./lib/cache.js",
"./cache/scopedCache": "./lib/cache/scopedCache.js",
"./tags": "./lib/parks/tags.js"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"docs": "./node_modules/.bin/jsdoc -c .jsdoc.json -R README.md",
"mocha": "mocha",
"lint": "eslint ./lib/**/*.js",
"lintfix": "eslint ./lib/**/*.js --fix",
"dev": "node --experimental-sqlite ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThemeParks/parksapi.git"
},
"author": "@cube",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThemeParks/parksapi/issues"
},
"homepage": "https://github.com/ThemeParks/parksapi#readme",
"dependencies": {
"adm-zip": "^0.5.16",
"ajv": "^6.12.6",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"egoroof-blowfish": "^4.0.1",
"fetch-cookie": "^3.0.1",
"hpagent": "^1.2.0",
"json-diff": "^0.5.4",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"lmdb": "^3.0.13",
"memdown": "^6.1.1",
"mingo": "^6.4.15",
"moment-timezone": "^0.5.31",
"needle": "^3.3.1",
"node-fetch": "^3.1.1",
"object-hash": "^3.0.0",
"pouchdb": "^9.0.0",
"promise-retry": "^2.0.1",
"random-useragent": "^0.5.0",
"sift": "^17.1.3",
"tough-cookie": "^4.0.0",
"tz-lookup": "^6.1.25",
"uuid": "^10.0.0",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@babel/traverse": "^7.11.0",
"docdash": "^2.0.1",
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^4.0.1",
"mocha": "^10.0.0"
}
}