-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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": "divide-up-circle-in-circular-segments",
"description": "Divide a circle into circular segments whose area is proportional to the data",
"version": "1.0.5",
"repository": {
"type": "git",
"url": "https://github.com/ilariaventurini/divide-up-circle-in-circular-segments.git"
},
"author": {
"name": "Ilaria Venturini",
"email": "venturini.ila@gmail.com"
},
"private": false,
"license": "MIT",
"keywords": [
"circles",
"areas",
"chords",
"segmentarea"
],
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"compile": "rm -rf dist/ && tsc --outDir dist",
"compile-watch": "rm -rf dist/ && tsc -w --outDir dist",
"format": "prettier src/**/*.{js,jsx,ts,tsx} --write",
"lint": "tslint -p tsconfig.json",
"prepublish": "yarn compile",
"clean": "yarn format && yarn lint",
"start:demo": "parcel demo/index.html",
"build": "parcel build demo/index.html --out-dir demo-build"
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"cssnano": "^4.1.10",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"parcel": "^1.12.4",
"prettier": "^2.0.5",
"tachyons": "^4.12.0",
"tachyons-extra": "^1.1.3",
"typescript": "^4.0.2"
},
"dependencies": {
"d3": "^5.16.0"
}
}