This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
forked from contentful/node-apps-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "@contentful/node-apps-toolkit",
"version": "2.8.0",
"description": "A collection of helpers and utilities for creating NodeJS Contentful Apps",
"main": "lib/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .ts ./src",
"lint:fix": "npm run lint -- --fix",
"pretest": "echo ' 🔑 Creating valid keypair for testing' && sh test/make-private-keys.sh &> /dev/null",
"test:unit": "mocha -r dotenv/config -r ts-node/register ./src/**/*.spec.ts",
"test:integration": "mocha -r dotenv/config -r ts-node/register --timeout 10000 ./test/**/*.test.ts",
"test": "npm run test:unit && npm run test:integration",
"build": "rm -rf lib && tsc",
"build:docs": "typedoc --options .typedocrc.json src",
"start:docs": "serve ./docs",
"prepublishOnly": "npm run build && npm run build:docs",
"semantic-release": "semantic-release"
},
"author": "Contentful GmbH",
"license": "MIT",
"dependencies": {
"@types/debug": "^4.1.5",
"contentful-management": "^10.35.4",
"debug": "^4.2.0",
"got": "^11.7.0",
"jsonwebtoken": "^9.0.0",
"node-cache": "^5.1.2",
"runtypes": "^5.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jsonwebtoken": "9.0.4",
"@types/mocha": "10.0.3",
"@types/node": "20.8.9",
"@types/sinon": "10.0.20",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"base64url": "3.0.1",
"dotenv": "16.3.1",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"mocha": "10.2.0",
"prettier": "3.0.3",
"semantic-release": "22.0.5",
"serve": "14.2.1",
"sinon": "17.0.0",
"ts-node": "10.9.1",
"typedoc": "0.25.2",
"typescript": "5.2.2"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix"
]
},
"repository": {
"url": "github:contentful/node-apps-toolkit",
"type": "git"
}
}