-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
104 lines (104 loc) · 2.88 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sveltejs-forms",
"description": "Declarative forms for Svelte",
"homepage": "https://mdauner.github.io/sveltejs-forms/",
"version": "0.0.0-semantically-released",
"license": "MIT",
"repository": "github:mdauner/sveltejs-forms",
"svelte": "src/components/components.module.js",
"module": "dist/index.min.mjs",
"main": "dist/index.min.js",
"devDependencies": {
"@babel/core": "~7.8.7",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-runtime": "~7.8.3",
"@babel/preset-env": "~7.8.7",
"@commitlint/cli": "~8.3.5",
"@commitlint/config-conventional": "~8.3.4",
"@testing-library/jest-dom": "~5.1.1",
"@testing-library/svelte": "~1.11.0",
"@types/jest": "~25.1.3",
"autoprefixer": "~9.7.4",
"babel-jest": "~25.1.0",
"cz-conventional-changelog": "~3.1.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.00",
"eslint-plugin-jest": "~23.8.1",
"eslint-plugin-svelte3": "~2.7.3",
"husky": "~4.2.3",
"jest": "~25.1.0",
"jest-transform-svelte": "~2.1.1",
"lint-staged": "~10.0.8",
"node-sass": "~4.13.1",
"npm-run-all": "~4.1.5",
"postcss": "~7.0.27",
"postcss-load-config": "~2.1.0",
"prettier": "~1.19.1",
"prettier-plugin-svelte": "~0.7.0",
"rollup": "~1.32.0",
"rollup-plugin-babel": "~4.3.3",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-livereload": "~1.0.4",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-svelte": "~5.1.1",
"rollup-plugin-terser": "~5.2.0",
"semantic-release": "~17.0.4",
"sirv-cli": "~0.4.5",
"svelte": "~3.20.0",
"svelte-preprocess": "~3.4.0",
"yup": "~0.28.2"
},
"peerDependencies": {
"svelte": "~3.20.0",
"yup": "~0.28.2"
},
"dependencies": {
"lodash-es": "~4.17.15",
"svelte-writable-derived": "~2.0.1"
},
"scripts": {
"prettier": "prettier --check '**/*.{svelte, html, css, scss, stylus, js, ts, json, yml, md}' --plugin-search-dir=.",
"lint": "eslint --color './**/*.{js,svelte}'",
"test": "jest --verbose",
"autobuild": "rollup -c -w",
"start:dev": "sirv public --single --dev",
"dev": "run-p start:dev autobuild",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"browserslist": [
"defaults"
],
"keywords": [
"svelte",
"forms",
"validation",
"javascript"
],
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{svelte,js}": [
"eslint --fix",
"git add"
],
"*.{svelte, html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write --plugin-search-dir=.",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}