-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "@beamwind/monorepo",
"version": "0.0.0-independent",
"private": true,
"homepage": "https://github.com/kenoxa/beamwind",
"bugs": "https://github.com/kenoxa/beamwind/issues",
"repository": {
"type": "git",
"url": "https://github.com/kenoxa/beamwind.git"
},
"license": "MIT",
"author": "Kenoxa GmbH <https://kenoxa.com>",
"workspaces": [
"benchmarks",
"types",
"examples/*",
"packages/*"
],
"scripts": {
"build": "lerna run --no-private build",
"ci": "nps",
"clean": "nps clean && lerna exec -- nps clean",
"docs": "nps docs && lerna exec --no-private -- nps docs.package",
"format": "nps format && lerna exec -- nps format.package",
"preinstall": "npx only-allow yarn",
"publish": "lerna publish --no-private",
"test": "nps",
"preversion": "lerna exec -- nps prepare && nps test",
"version": "lerna exec -- nps version"
},
"prettier": "@carv/prettier-config",
"eslintConfig": {
"extends": "@carv/eslint-config",
"root": true
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"devDependencies": {
"@carv/esbundle": "^1.1.5",
"@carv/eslint-config": "^1.6.0",
"@carv/jest-preset": "^1.1.6",
"@carv/prettier-config": "^1.1.0",
"@carv/tsconfig": "^1.3.0",
"@carv/types": "^1.3.1",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"nps": "^5.9.12",
"only-allow": "^1.0.0",
"prettier": "^2.0.5",
"typescript": "^4.1.0"
}
}