-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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": "@phbalance/d3-tooltip",
"version": "1.0.0",
"description": "Small library for generating svg tooltips using foreignObject.",
"main": "fo-tooltip.js",
"module": "fo-tooltip.es6.js",
"sideEffects": true,
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:dev": "rollup -c --environment BUILD:development",
"clean": "rimraf fo-tooltip.js fo-tooltip.js.map fo-tooltip.es6.js fo-tooltip.es6.js.map fo-tooltip.d.ts",
"lint": "tslint -p tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"No tests specified\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phBalance/d3-tooltip.git"
},
"bugs": {
"url": "https://github.com/phBalance/d3-tooltip/issues"
},
"keywords": [
"d3",
"tooltip",
"foreignObject"
],
"author": "Peter Hunnisett <peter@softwarebalm.com> (https://softwarebalm.com)",
"private": false,
"license": "MIT",
"homepage": "https://github.com/phBalance/d3-tooltip#readme",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/d3-selection": "^2.0.1",
"np": "^7.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.53.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.3",
"tslint": "^6.1.3",
"typescript": "^3.9.10"
},
"dependencies": {
"@phbalance/contrast-colour": "^0.0.6",
"common-tags": "^1.8.0",
"d3-selection": "^2.0.0 || ^3.0.0"
}
}