-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
92 lines (92 loc) · 2.79 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
{
"name": "svelte-forms-lib",
"version": "0.0.0-semantically-released",
"description": "Svelte forms lib - A lightweight library for managing forms in Svelte v3",
"typings": "./lib/index.d.ts",
"scripts": {
"start": "rollup -c -w rollup.config.js",
"build": "cross-env NODE_ENV=production && rollup -c rollup.config.js",
"prepare": "npm run build && husky install",
"test": "jest && npm run svelte-check",
"test:watch": "concurrently \"jest --watchAll\" npm:svelte-check:watch",
"svelte-check:watch": "svelte-check --watch --output=human-verbose",
"svelte-check": "svelte-check --fail-on-warnings --output=human-verbose",
"format": "prettier --write lib/**/*.{js,svelte}",
"commit": "git-cz"
},
"files": [
"build/*",
"lib/*"
],
"svelte": "./lib/index.js",
"author": "Tjin Au Yeung",
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"svelte",
"forms",
"validation",
"form-validation"
],
"repository": {
"type": "git",
"url": "https://github.com/tjinauyeung/svelte-forms-lib"
},
"homepage": "https://svelte-forms-lib-sapper-docs.now.sh",
"main": "./build/index.js",
"module": "./build/index.mjs",
"license": "MIT",
"dependencies": {
"dequal": "^2.0.2"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-typescript": "^8.2.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@types/chance": "1.1.3",
"@types/jest": "26.0.24",
"@types/yup": "0.29.13",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chance": "1.1.7",
"commitizen": "^4.2.4",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-unicorn": "^38.0.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.1",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "11.1.1",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.3.1",
"rollup": "2.54.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "7.1.0",
"semantic-release": "^17.4.4",
"svelte": "3.40.2",
"svelte-check": "^2.2.3",
"svelte-fragment-component": "^1.2.0",
"svelte-jester": "^1.7.0",
"svelte-jsx": "^2.0.0",
"svelte-preprocess": "^4.7.4",
"svelte2tsx": "^0.4.2",
"typescript": "^4.3.5",
"yup": "0.32.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}