-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@visualstorytelling/provenance-tree-visualization",
"version": "1.0.3",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"main": "dist/provenance-tree-visualization.umd.js",
"module": "dist/provenance-tree-visualization.es5.js",
"typings": "dist/types/provenance-tree-visualization.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.{css,scss,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/d3-hierarchy": "^1.1.2",
"@types/node": "^12.7.2",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.1",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"v": "^0.3.0"
},
"peerDependencies": {
"@visualstorytelling/provenance-core": "^1.1.4"
},
"dependencies": {
"cross-env": "5.2.0",
"d3": "^5.10.0",
"d3-hierarchy": "^1.1.6"
}
}