forked from bryanmylee/svelte-popperjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "svelte-popperjs",
"version": "1.2.6",
"description": "Popper for Svelte with actions, no wrapper components required!",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "rollup -c && tsc",
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bryanmylee/svelte-popperjs.git"
},
"keywords": [
"svelte",
"sveltejs",
"popper",
"popperjs",
"tooltip",
"positioning"
],
"author": "Bryan Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/bryanmylee/svelte-popperjs/issues"
},
"homepage": "https://github.com/bryanmylee/svelte-popperjs#readme",
"peerDependencies": {
"@popperjs/core": "2.9.x"
},
"devDependencies": {
"@popperjs/core": "2.9.x",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.6.3",
"rollup": "^2.23.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.0",
"typescript": "^4.1.3"
}
}