-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.31 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
{
"name": "svelte-indicative",
"description": "Svelte implementation of AdonisJs Indicative form validation.",
"author": "Craig Aschbrenner",
"version": "1.0.0-alpha.3",
"license": "MIT",
"defaultNamespace": "@svelte-indicative",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@testing-library/cypress": "6.0.0",
"acorn": ">=7.2.0",
"autoprefixer": "9.8.0",
"cypress": "4.7.0",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-svelte3": "2.7.3",
"husky": "4.2.5",
"lint-staged": "10.2.9",
"postcss": "7.0.32",
"postcss-load-config": "2.1.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"rollup": "2.13.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-livereload": "1.3.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "5.2.2",
"rollup-plugin-terser": "6.1.0",
"sirv-cli": "0.4.6",
"start-server-and-test": "1.11.0",
"svelte": "3.23.0",
"svelte-preprocess": "3.9.4"
},
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"forms",
"validation",
"indicative",
"svelte",
"svelte3",
"svelte-components",
"sveltejs"
],
"lint-staged": {
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write"
],
"*.{js, svelte}": [
"eslint --fix"
]
},
"main": "dist/index.min.js",
"module": "dist/index.min.mjs",
"repository": {
"type": "git",
"url": "[email protected]:caschbre/Svelte-Indicative.git"
},
"scripts": {
"build": "rollup -c",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "rollup -c -w",
"lint": "eslint --color --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"start": "sirv public",
"test": "start-server-and-test dev http://localhost:5000 cy:run"
},
"svelte": "src/components.module.js",
"dependencies": {
"indicative": "7.4.4"
}
}