-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.61 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@visualstorytelling/slide-deck-visualization",
"version": "1.0.1",
"description": "",
"keywords": [],
"author": "",
"license": "Apache-2.0",
"main": "dist/slide-deck-visualization.umd.js",
"module": "dist/slide-deck-visualization.es5.js",
"typings": "dist/types/slide-deck-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",
"style": "prettier src/*.{ts,tsx,js,jsx} --write && tslint -p . --fix"
},
"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-selection": "^1.4.1",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.7.2",
"@types/sortablejs": "^1.3.32",
"husky": "^3.0.4",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"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-css-only": "^1.0.0",
"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-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3",
"v": "^0.3.0"
},
"peerDependencies": {
"@visualstorytelling/provenance-core": "^1.1.4"
},
"dependencies": {
"@types/codemirror": "^0.0.76",
"d3": "^5.10.0",
"easymde": "^2.8.0",
"font-awesome": "^4.7.0"
}
}