-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
57
58
59
60
61
62
63
64
65
{
"name": "svelte-formup",
"version": "0.6.2",
"description": "form helpers for svelte",
"keywords": [
"svelte",
"yup",
"form",
"forms",
"validations",
"validation",
"html5",
"form-validation"
],
"homepage": "https://svelte-formup.js.org",
"bugs": {
"url": "https://github.com/kenoxa/svelte-formup/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenoxa/svelte-formup.git"
},
"license": "MIT",
"author": "Sascha Tandel <[email protected]>",
"scripts": {
"build": "nps build",
"format": "nps format",
"prepublishOnly": "echo 'Use `npm start release` instead of `npm publish`!' && exit 1",
"release": "nps release",
"start": "nps",
"test": "nps test",
"typedoc": "typedoc"
},
"prettier": "@carv/prettier-config",
"eslintConfig": {
"extends": "@carv/eslint-config",
"root": true
},
"jest": {
"preset": "@carv/snowpack-scripts"
},
"devDependencies": {
"@carv/snowpack-scripts": "^1.3.21",
"@carv/types": "^1.1.1",
"@testing-library/svelte": "^3.0.0",
"@testing-library/user-event": "^12.0.11",
"@types/yup": "^0.29.1",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"nps": "^5.9.12",
"svelte": "^3.22.3",
"svelte-htm": "^1.1.1",
"typedoc": "0.17.0-3",
"yup": "^0.29.1"
},
"peerDependencies": {
"svelte": "3.x"
},
"engines": {
"node": ">=12.4"
},
"snowpack": {
"extends": "@carv/snowpack-scripts"
}
}