-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "svelte-frappe-charts",
"version": "1.10.0",
"description": "📈 Svelte bindings for frappe-charts",
"scripts": {
"build": "rollup -c -m --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"release": "np --no-yarn"
},
"dependencies": {
"frappe-charts": "^1.6.2",
"svelte": "^3.53.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-transform-svelte": "^2.1.1",
"np": "^7.6.2",
"rollup": "^3.4.0",
"rollup-plugin-svelte": "^7.1.0"
},
"peerDependencies": {
"svelte": "^3.0.0"
},
"module": "lib/index.mjs",
"main": "lib/index.js",
"svelte": "src/index.js",
"files": [
"src/",
"!src/__tests__/**/*",
"!src/__fixtures__/**/*",
"lib/"
],
"keywords": [
"svelte",
"frappe-charts",
"svelte-component",
"svg-charts",
"charting-library",
"charts"
],
"author": {
"email": "d@velunny.com",
"name": "himynameisdave",
"url": "http://himynameisdave.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/svelte-frappe-charts.git"
},
"homepage": "https://github.com/himynameisdave/svelte-frappe-charts#readme",
"license": "MIT",
"sideEffects": false,
"private": false
}