-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "root",
"description": "",
"main": "index.js",
"license": "agpl-3.0",
"scripts": {
"clean": "npm run clean:locks && npm run clean:modules",
"clean:locks": "npm i --package-locks-only && lerna exec 'npm i --package-locks-only'",
"clean:modules": "lerna clean && shx rm -rf ./node_modules/",
"release": "lerna version",
"release:docs": "echo \"$(yaml set docs/antora.yml version $(dot-json lerna.json version))\" > docs/antora.yml",
"postinstall": "husky install",
"bootstrap": "npm ci && lerna bootstrap",
"bootstrap:no-ci": "npm i && lerna bootstrap --no-ci",
"bootstrap:clean": "npm i && lerna run clean --parallel && lerna bootstrap --no-ci",
"start": "lerna run start --parallel",
"start:dev": "lerna run start:dev --parallel --no-bail",
"start:sync:dev": "lerna run start:sync:dev --parallel --no-bail",
"build": "lerna run build --since HEAD",
"build:all": "lerna run build",
"lint": "lerna run lint --since HEAD --parallel",
"lint:all": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --since HEAD --parallel",
"lint:fix:all": "lerna run lint:fix --parallel",
"lint:staged": "lerna run lint:staged --since HEAD --stream --concurrency 1",
"test": "lerna run test --since HEAD --parallel",
"test:all": "lerna run test --parallel",
"test:ci": "lerna run test:ci",
"version": "npm run release:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digita-ai/semcom.git"
},
"author": "Wouter Janssens",
"bugs": {
"url": "https://github.com/digita-ai/semcom/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/digita-ai/semcom#readme",
"devDependencies": {
"@digita-ai/commitlint-config": "^0.3.2",
"@digita-ai/eslint-config": "^0.3.2",
"@digita-ai/jest-config": "^0.3.2",
"@digita-ai/lerna-config": "^0.3.2",
"@commitlint/cli": "^11.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"dot-json": "^1.2.2",
"eslint": "^7.24.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "4.1.5",
"yaml-cli": "^1.1.8"
},
"commitlint": {
"extends": [
"@digita-ai/commitlint-config"
]
},
"eslintConfig": {
"extends": [
"@digita-ai/eslint-config"
]
},
"lint-staged": {
"**/*.(js|ts)": [
"eslint --fix"
]
},
"jest": {
"projects": [
"./packages/*/package.json"
]
}
}