-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "@gjmcn/teapot",
"version": "0.3.2",
"description": "A JavaScript library for creating SVG plots.",
"module": "src/index.js",
"main": "dist/teapot.min.js",
"exports": {
"import": "./dist/teapot.min.js",
"default": "./dist/teapot.min.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "npx zap --all --map src",
"build": "npx zap --all --map src && rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gjmcn/teapot.git"
},
"author": "Graham McNeill",
"license": "MIT",
"bugs": {
"url": "https://github.com/gjmcn/teapot/issues"
},
"homepage": "https://github.com/gjmcn/teapot#readme",
"devDependencies": {
"@gjmcn/zap": "^0.4.3",
"@rollup/plugin-node-resolve": "^11.2.0",
"rollup": "^2.42.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"d3-shape": "^2.1.0",
"lodash-es": "^4.17.21"
}
}