-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "drupal-jsonapi-params",
"version": "3.0.1",
"description": "Drupal JSON-API params",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm test && pnpm run lint",
"preversion": "pnpm run lint",
"version": "pnpm run format && git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --options typedoc.json --out api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d34dman/drupal-jsonapi-params.git"
},
"keywords": [
"Drupal",
"JSON-API",
"javascript"
],
"author": "D34dMan",
"license": "ISC",
"bugs": {
"url": "https://github.com/d34dman/drupal-jsonapi-params/issues"
},
"homepage": "https://github.com/d34dman/drupal-jsonapi-params#readme",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/jest": "^29.5.14",
"@types/qs": "^6.14.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.27.9",
"typescript": "^5.7.3"
},
"dependencies": {
"qs": "^6.14.2"
},
"pnpm": {
"overrides": {
"minimatch@<3.1.4": "3.1.4",
"js-yaml@<3.14.2": ">=3.14.2",
"tmp@<=0.2.3": ">=0.2.4",
"diff@>=4.0.0 <4.0.4": ">=4.0.4"
}
}
}