-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 KB
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
{
"name": "imageboard",
"version": "0.11.5",
"description": "An easy uniform wrapper over the popular imageboards' API",
"main": "index.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./browser": {
"types": "./browser/index.d.ts",
"import": "./browser/index.js"
},
"./node": {
"types": "./node/index.d.ts",
"import": "./node/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"entities": "^4.4.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"set-cookie-parser": "^2.6.0",
"social-components": "^0.4.13",
"social-components-parser": "^0.3.1"
},
"devDependencies": {
"chai": "^4.3.6",
"copyfiles": "^2.1.1",
"mocha": "^10.0.0",
"npm-run-all": "^1.4.0"
},
"scripts": {
"test-chan": "node --experimental-json-modules test/test.js",
"test": "node --experimental-json-modules node_modules/mocha/bin/_mocha --require ./test/setup.js --reporter spec --colors --bail --exit --recursive --reporter-option maxDiffSize=0 \"./{,!(node_modules)/**/}*.test.js\"",
"create-json-js-files": "node scripts/create-json-js-files",
"build": "npm-run-all create-json-js-files",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/catamphetamine/imageboard.git"
},
"keywords": [
"imageboard",
"4chan",
"8ch",
"chan"
],
"author": "catamphetamine <purecatamphetamine@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/catamphetamine/imageboard/issues"
},
"homepage": "https://gitlab.com/catamphetamine/imageboard#readme"
}