-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 2.68 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "wordpress-api-client",
"description": "WordPress-API Client for JS/TS",
"version": "0.4.9",
"author": "dkress59",
"bugs": "https://github.com/dkress59/wordpress-api-client/issues",
"license": "MIT",
"main": "./dist/index.js",
"repository": "https://github.com/dkress59/wordpress-api-client",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check:script": "eslint src --ext .ts --fix-dry-run --report-unused-disable-directives",
"lint:script": "eslint src --ext .ts --fix",
"test": "jest --selectProjects core",
"test:e2e": "jest --selectProjects e2e --runInBand",
"test:watch": "jest --selectProjects core --watchAll",
"doctor": "yarn dlx @yarnpkg/doctor",
"docker": "docker compose -f __tests__/e2e/docker-compose.yml up -d",
"docker:build": "docker compose -f __tests__/e2e/docker-compose.yml build --no-cache --pull",
"docker:down": "docker compose -f __tests__/e2e/docker-compose.yml down --volumes",
"postinstall": "husky install",
"prepack": "yarn pinst --disable",
"postpack": "yarn pinst --enable"
},
"types": "./dist/index.d.ts",
"contributors": [
{
"name": "Damian Kress",
"email": "[email protected]"
}
],
"dependencies": {
"@tool-belt/type-predicates": "1.2.2",
"cross-fetch": "3.1.5",
"wp-types": "3.61.0"
},
"devDependencies": {
"@tool-belt/eslint-config": "1.5.1",
"@types/eslint": "8.21.0",
"@types/faker": "5.5.9",
"@types/jest": "28.1.8",
"@types/jest-specific-snapshot": "0.5.6",
"@types/node": "16.18.12",
"@types/source-map-support": "0.5.6",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"chalk": "5.2.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sonarjs": "0.14.0",
"eslint-plugin-unused-imports": "2.0.0",
"faker": "5.5.3",
"husky": "8.0.3",
"interface-forge": "1.5.1",
"jest": "28.1.3",
"jest-specific-snapshot": "5.0.0",
"pinst": "3.0.0",
"prettier": "2.8.4",
"source-map-support": "0.5.21",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": "14.17.0 || >=16.0.0"
},
"keywords": [
"typescript",
"wordpress",
"headless",
"nodejs",
"REST",
"api client",
"wpapi",
"wp-api",
"wp-json",
"json",
"js",
"ts",
"wp"
],
"packageManager": "[email protected]"
}