-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.8 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
{
"name": "ygopro-data",
"version": "1.4.1",
"description": "Parses information from YGOPro card databases",
"main": "dist/ygo-data.js",
"types": "dist/ygo-data.d.ts",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map"
],
"scripts": {
"test": "mocha",
"build": "tsc",
"cover": "nyc npm run test",
"lint": "./node_modules/.bin/eslint --ext .ts ./lib/*"
},
"keywords": [
"sqlite",
"ygopro",
"yu-gi-oh"
],
"author": "AlphaKretin <[email protected]>",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaKretin/ygo-data.git"
},
"bugs": {
"url": "https://github.com/AlphaKretin/ygo-data/issues"
},
"homepage": "https://github.com/AlphaKretin/ygo-data#ygo-data",
"dependencies": {
"@octokit/rest": "^18.2.0",
"better-sqlite3": "^7.1.2",
"fuse.js": "^6.4.6",
"jimp": "^0.16.1",
"mkdirp": "^1.0.4",
"mz": "^2.7.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/better-sqlite3": "^5.4.1",
"@types/mkdirp": "^1.0.1",
"@types/mz": "2.7.3",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"chai": "^4.3.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"prettier": {
"printWidth": 120,
"useTabs": true,
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
}
}