-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "@zingsoft/zingchart-svelte",
"description": "A Svelte component to incorporate ZingChart into a Svelte application",
"version": "1.0.0",
"author": "Phil Mercurio <[email protected]> (https://zingsoft.com)",
"svelte": "src/index.js",
"module": "lib/index.mjs",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "/bin/true",
"real-test": "jest src",
"release": "np --no-yarn"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-node-resolve": "^11.2.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^27.4.5",
"husky": "^6.0.0",
"jest": "^27.4.5",
"np": "^7.4.0",
"rollup": "^2.61.1",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.44.3",
"svelte-jester": "^2.1.5"
},
"peerDependencies": {
"svelte": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"keywords": [
"svelte",
"svelte-component",
"copyright",
"ui-component",
"svelte-copyright"
],
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zingchart/zingchart-svelte.git"
},
"homepage": "https://github.com/zingchart/zingchart-svelte",
"license": "MIT",
"sideEffects": false,
"private": false,
"dependencies": {
"zingchart": "latest",
"zingchart-constants": "github:zingchart/zingchart-constants#master"
},
"bugs": {
"url": "https://github.com/zingchart/zingchart-svelte/issues"
}
}