forked from nickyhajal/svelte-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "@master.technology/svelte-tabs",
"version": "1.2.3",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"private": false,
"access": "public",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/svelte": "^1.8.0",
"jest": "^24.8.0",
"jest-transform-svelte": "^2.0.2",
"rollup": "^2.53.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.38.3",
"rollup-plugin-import-css": "^3.0.0"
},
"keywords": [
"svelte",
"tabs"
],
"license": "MIT",
"contributors": [
"Rich Harris",
"Joe Attardi <jattardi@gmail.com> (https://joeattardi.codes)",
"Nathanael Anderson <nathan@master.technology> (https://master.technology)"
],
"repository": {
"type": "git",
"url": "https://github.com/master-technology/svelte-tabs.git"
},
"bugs": {
"url": "https://github.com/master-technology/svelte-tabs/issues"
},
"files": [
"dist",
"src/id.js",
"src/index.js",
"src/Tab.svelte",
"src/TabList.svelte",
"src/TabPanel.svelte",
"src/Tabs.svelte"
]
}