-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.84 KB
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
{
"name": "@healthtree/svelte-data-table",
"description": "svelte-data-table",
"homepage": "https://github.com/Healthtree/svelte-data-table/blob/master/README.md",
"svelte": "src/components/components.module.js",
"module": "dist/index.min.mjs",
"main": "dist/index.min.js",
"version": "1.0.4",
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@testing-library/cypress": "6.0.0",
"autoprefixer": "9.7.6",
"cypress": "4.4.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-svelte3": "2.7.3",
"husky": "4.2.5",
"lint-staged": "10.1.6",
"postcss": "7.0.27",
"postcss-load-config": "2.1.0",
"prettier": "2.0.4",
"rollup": "2.6.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-livereload": "1.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "5.2.1",
"rollup-plugin-terser": "5.3.1",
"sirv-cli": "0.4.5",
"start-server-and-test": "1.11.0",
"svelte": "3.20.1",
"svelte-preprocess": "3.7.1"
},
"files": [
"src/components",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"svelte"
],
"lint-staged": {
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write",
"git add"
],
"*.{js, svelte}": [
"eslint --fix",
"git add"
]
},
"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"
},
"dependencies": {
"fuse.js": "5.2.2",
"lodash-es": "4.17.15"
}
}