forked from spaceavocado/svelte-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "@spaceavocado/svelte-form",
"version": "1.0.4",
"description": "Simple Svelte form model handler and input validations.",
"main": "lib/svelte-form.js",
"module": "lib/svelte-form.esm.js",
"files": [
"/lib",
"changelog.md"
],
"author": "David Horak <info@davidhorak.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest --verbose /src/*",
"docs": "jsdoc . -r -d docs -c jsdoc.json -R readme.md",
"prepare": "npm run build",
"license-check": "license-checker --summary --excludePrivatePackages --onlyAllow 'MIT;MIT OR X11;BSD;ISC;Apache-2.0;MPL-2.0;Apache 2.0;WTFPL;CC0-1.0;CC-BY-3.0;CC-BY-4.0;Unlicense;Zlib;Apache*'"
},
"repository": {
"type": "git",
"url": "git@github.com:spaceavocado/svelte-form.git"
},
"bugs": {
"url": "https://github.com/spaceavocado/svelte-form/issues"
},
"homepage": "https://github.com/spaceavocado/svelte-form",
"keywords": [
"svelte",
"form",
"validation",
"plugins"
],
"dependencies": {
"@spaceavocado/type-check": "^1.0.1"
},
"peerDependencies": {
"svelte": "^3.8.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"docdash": "^1.1.1",
"eslint": "^6.2.1",
"eslint-config-google": "^0.13.0",
"jest": "^24.8.0",
"license-checker": "^25.0.1",
"rollup": "^1.20.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"svelte": "^3.8.1"
}
}