-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "dvelop-sdk",
"private": true,
"description": "Official SDK to build d.velop cloud Apps with Node.js",
"workspaces": [
"packages/core",
"packages/app-router",
"packages/identityprovider",
"packages/task",
"packages/dms",
"packages/business-objects",
"packages/express-utils",
"packages/logging"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b",
"build:force": "tsc -b --clean && tsc -b",
"test": "jest --config jest.json --coverage",
"test:watch": "jest --config jest.json --watch",
"lint": "eslint packages/**/src/**/*.ts",
"lint:fix": "eslint packages/**/src/**/*.ts --fix",
"license": "ts-node scripts/check-licenses.ts",
"publish:next": "ts-node scripts/npm-publish-next.ts",
"publish:latest": "ts-node scripts/npm-tag-as-latest.ts",
"docs": "typedoc"
},
"pre-commit": [
"test",
"lint"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.1.9",
"jest": "^27.5.1",
"license-checker": "^25.0.1",
"pre-commit": "^1.2.2",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typedoc": "^0.22.13",
"typescript": "^4.1.2"
}
}