-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.03 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
{
"name": "@arabdevelop/svelte-formly",
"svelte": "src/Component.svelte",
"module": "dist/index.mjs",
"main": "dist/component.min.js",
"version": "0.0.0",
"author": "Kamal Sahmoud <[email protected]>",
"contributors": [
"Kamal Sahmoud <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/chainlist/svelte-forms"
}
"scripts": {
"preinstall": "[ -z \"$NPM_TOKEN\" ] && echo 'local' || echo \"//registry.npmjs.org/:_authToken=${NPM_TOKEN}\" > .npmrc",
"build": "rollup -c",
"dev": "WATCH=true rollup -cw",
"prepublishOnly": "npm run build",
"lint": "eslint src/**",
"test": "NODE_ENV=unit jest --no-cache"
},
"browserslist": [
"> 0.25%"
],
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@beyonk/eslint-config": "^4.0.1",
"@hapi/code": "^6.0.0",
"@testing-library/dom": "^5.6.1",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/svelte": "^1.7.1",
"autoprefixer": "^9.6.1",
"dayjs": "^1.8.15",
"eslint": "^6.1.0",
"esm": "^3.2.25",
"fetch-mock": "^7.3.9",
"jest": "^24.8.0",
"jest-transform-svelte": "^2.0.2",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"postcss": "^7.0.17",
"rollup": "^1.19.4",
"rollup-plugin-browsersync": "^1.0.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-svelte": "^5.0.0",
"rollup-plugin-terser": "^5.1.1",
"sass": "^1.22.10",
"svelte": "^3.8.0",
"svelte-preprocess": "^2.15.1"
},
"keywords": [
"svelte"
],
"files": [
"dist",
"src"
],
"eslintConfig": {
"extends": "@beyonk",
"plugins": [
"mocha"
],
"globals": {
"it": true,
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"context": true
}
},
"dependencies": {
"clsx": "^1.0.4"
}
}