-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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-api-client",
"version": "0.0.1",
"description": "Simple JS client to use Drupal.org API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc --build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideBruner/drupal-api-client.git"
},
"keywords": [
"drupal",
"drupal.org",
"drupal-org-api",
"api",
"isomorphic",
"client",
"server"
],
"author": "DavideBruner",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideBruner/drupal-api-client/issues"
},
"homepage": "https://github.com/DavideBruner/drupal-api-client#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^28.1.8",
"@types/querystringify": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.0",
"fetch-mock": "^9.11.0",
"husky": "^8.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.3",
"querystringify": "^2.2.0",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}