-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "dinky.js",
"version": "2.0.0-beta.4",
"description": "JavaScript bindings for Philomena JSON API. Supports sites such as Derpibooru and Furbooru.",
"type": "module",
"types": "./@type/dinky.d.ts",
"main": "./lib/dinky.js",
"exports": "./lib/dinky.js",
"repository": "octet-stream/dinky",
"author": "Nick K. <io@octetstream.me>",
"license": "MIT",
"engines": {
"node": ">= 14.17"
},
"keywords": [
"api-bindings",
"derpibooru",
"furbooru",
"api-client",
"philomena"
],
"scripts": {
"build": "tsc && tsc --project tsconfig.d.ts.json",
"cleanup": "del-cli @type lib",
"test": "ava --fail-fast",
"coverage": "c8 npm test",
"ci": "c8 npm test && c8 report --reporter=json",
"eslint": "eslint src/**/*.ts --ext .ts",
"staged": "lint-staged",
"prepare": "npm run cleanup && npm run build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@octetstream/eslint-config": "6.2.2",
"@types/lodash.merge": "4.6.7",
"@types/node": "18.7.15",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"ava": "4.3.3",
"c8": "7.12.0",
"del-cli": "4.0.1",
"eslint": "8.17.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-ava": "13.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nock": "13.2.9",
"pinst": "3.0.0",
"sinon": "14.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"dependencies": {
"camelcase-keys": "8.0.2",
"lodash.merge": "4.6.2",
"node-fetch": "3.2.10",
"normalize-url": "7.1.0"
}
}