-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "webtreemap",
"version": "2.0.1",
"description": "treemap visualization",
"main": "build/src/index.js",
"bin": {
"webtreemap": "build/src/cli.js"
},
"dependencies": {
"commander": "^2.11.0"
},
"devDependencies": {
"@types/commander": "^2.11.0",
"@types/node": "^8.0.34",
"prettier": "1.14.3",
"typescript": "^3.1.3",
"webpack": "^3.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier --write src/*.ts demo/*.ts *.md",
"build": "tsc && webpack -p",
"demo": "du -ab node_modules/ | node build/src/cli.js --title 'node_modules for webtreemap' > docs/index.html"
},
"files": [
"build/*.js",
"build/*.d.ts",
"dist/webtreemap.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evmar/webtreemap.git"
},
"keywords": [
"treemap",
"visualization"
],
"author": "Evan Martin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/evmar/webtreemap/issues"
},
"homepage": "https://github.com/evmar/webtreemap#readme",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
}
}