-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "d3-helper",
"version": "1.0.0",
"description": "d3 helper classes",
"license": "bsd",
"author": "info@camptocamp.com",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/geoblocks/d3-helper.git"
},
"source": "src/index.ts",
"scripts": {
"build": "microbundle --format es",
"doc": "typedoc --out dist/api --theme minimal --readme none --hideGenerator --listInvalidSymbolLinks --toc none --exclude '**/*test*'",
"lint": "npm run tslint && npm run typecheck",
"start": "parcel serve --port 8080 examples/**/*.html",
"tslint": "tslint src/*.js",
"typecheck": "tsc --pretty"
},
"dependencies": {
"d3": "^5.14.2",
"dist": "^0.1.2"
},
"devDependencies": {
"@geoblocks/base": "^0.1.1",
"es-dev-server": "^1.45.3",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.4",
"tslib": "^1.10.0",
"tslint": "~5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-consistent-codestyle": "^1.16.0",
"typedoc": "^0.16.11",
"typescript": "~3.7.5"
}
}