-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "drupal-jsonapi-params",
"version": "2.3.2",
"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.26.0",
"@types/jest": "^27.0.3",
"@types/qs": "^6.9.3",
"jest": "^27.4.5",
"prettier": "^1.19.1",
"ts-jest": "^27.1.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
},
"dependencies": {
"qs": "^6.10.3"
}
}