-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "svelkit",
"version": "0.0.0-independent",
"private": true,
"homepage": "https://github.com/kenoxa/svelkit",
"bugs": "https://github.com/kenoxa/svelkit/issues",
"repository": {
"type": "git",
"url": "https://github.com/kenoxa/svelkit.git"
},
"author": "Sascha Tandel <s.tandel@kenoxa.de>",
"workspaces": [
"docs",
"types",
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "nps clean && lerna exec -- nps clean",
"format": "nps format && lerna exec -- nps format.package",
"preinstall": "npx only-allow yarn",
"publish": "lerna publish",
"test": "nps test",
"preversion": "lerna exec -- nps prepare && nps test",
"version": "lerna exec --since -- nps prettier.changelog"
},
"prettier": "@carv/prettier-config",
"eslintConfig": {
"extends": "@carv/eslint-config",
"root": true
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"devDependencies": {
"@carv/eslint-config": "^1.4.1",
"@carv/prettier-config": "^1.0.2",
"@carv/scripts": "^1.4.0",
"@carv/types": "^1.3.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/svelte": "^3.0.0",
"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",
"svelte": "^3.26.0",
"svelte-htm": "^1.1.1",
"typescript": "^4.0.2"
}
}