-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.23 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
{
"name": "philomena",
"version": "0.1.2",
"description": "A (currently WIP) node.js wrapper for philomena-based imageboards (like derpibooru).",
"keywords": [
"derpibooru",
"philomena"
],
"main": "cjs/index.js",
"module": "mjs/index.js",
"types": "types/index.d.ts",
"files": [
"cjs",
"mjs",
"types"
],
"scripts": {
"clean": "rimraf cjs mjs types coverage .nyc_output docs",
"build": "npm run clean && npm run build:types && npm run build:cjs && npm run build:mjs",
"build:types": "tsc --project tsconfig.types.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:mjs": "tsc --project tsconfig.mjs.json",
"build:ci": "npm run build:types && npm run build:cjs",
"lint": "eslint --ext .ts src/",
"lint:ci": "npm run lint",
"test": "nyc mocha -r source-map-support/register -r ts-node/register test/**/*.ts",
"test:ci": "npm run test && nyc report --reporter=json",
"docs": "node renderdocs",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCelestia/node-philomena.git"
},
"author": "PCelestsia",
"license": "MIT",
"bugs": {
"url": "https://github.com/PCelestia/node-philomena/issues"
},
"homepage": "https://github.com/PCelestia/node-philomena#readme",
"dependencies": {
"bent": "^7.3.12",
"zod": "^3.0.0-alpha.4"
},
"devDependencies": {
"@autumnblaze/eslint-config-h": "^0.1.1",
"@types/bent": "^7.3.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"del": "^6.0.0",
"eslint": "^7.17.0",
"eslint-plugin-functional": "^3.2.1",
"fs-extra": "^9.0.1",
"json5": "^2.1.3",
"merge-stream": "^2.0.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typedoc": "^0.20.14",
"typescript": "^4.1.3"
}
}