-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 2.63 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
{
"name": "sveltejs-tippy",
"description": "Tippy.js for Svelte",
"version": "0.0.0-semantically-released",
"license": "MIT",
"repository": "github:mdauner/sveltejs-tippy",
"svelte": "src/index.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.4",
"autoprefixer": "~9.7.4",
"babel-jest": "~25.1.0",
"cz-conventional-changelog": "~3.1.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-jest": "~23.8.2",
"eslint-plugin-svelte3": "~2.7.3",
"husky": "~4.2.3",
"jest": "~25.1.0",
"lint-staged": "~10.0.8",
"npm-run-all": "~4.1.5",
"postcss": "~7.0.27",
"prettier": "~1.19.1",
"prettier-plugin-svelte": "~0.7.0",
"rollup": "~1.32.1",
"rollup-plugin-babel": "~4.4.0",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-livereload": "~1.0.4",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-postcss": "~2.4.0",
"rollup-plugin-replace": "~2.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.19.2",
"svelte-jest": "~0.3.1",
"svelte-preprocess": "~3.4.0"
},
"dependencies": {
"tippy.js": "~6.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",
"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",
"tooltip",
"popover",
"tippy",
"tippy.js"
],
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js, svelte}": [
"eslint --fix",
"git add"
],
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}