forked from d3fc/d3fc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.52 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
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
81
{
"name": "@d3fc/d3fc-monorepo",
"private": true,
"description": "A collection of components that make it easy to build interactive charts with D3",
"scripts": {
"postinstall": "lerna bootstrap",
"publish": "lerna publish --conventional-commits --message \"chore: publish\" --yes",
"bundle": "lerna run bundle --stream --concurrency 1",
"bundle-min": "lerna run bundle --stream --concurrency 1 -- -- --configEnv=prod",
"test": "lerna run test --stream --concurrency 1",
"lint": "eslint **/*.js -c .eslintrc.json && markdownlint **/*.md --ignore **/node_modules/**",
"screenshots": "lerna run screenshots --stream --concurrency 1",
"start": "lerna run bundle && npm start --prefix ./packages/d3fc",
"commitlint": "commitlint --from HEAD~1 to HEAD --verbose"
},
"husky": {
"hooks": {
"prepare-commit-msg": "env FORCE_COLOR=1 node ./scripts/commit-notice.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3fc/d3fc.git",
"_homepage": "https://github.com/d3fc/d3fc"
},
"keywords": [
"d3",
"financial",
"components",
"charts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/d3fc/d3fc/issues"
},
"homepage": "https://d3fc.io",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babelrc-rollup": "^3.0.0",
"chalk": "^2.4.2",
"command-line-args": "^3.0.1",
"commitizen": "^4.0.3",
"cross-spawn": "^5.0.1",
"cz-conventional-changelog": "^3.0.2",
"d3": "^5.7.0",
"eol": "^0.4.0",
"eslint": "^6.3.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"finalhandler": "^1.1.2",
"glob": "^7.1.0",
"husky": "^3.0.5",
"jasmine": "^2.4.1",
"jsdom": "^9.4.1",
"lerna": "^3.16.4",
"markdownlint": "^0.16.0",
"markdownlint-cli": "^0.17.0",
"mkdirp": "^0.5.1",
"puppeteer": "^1.19.0",
"read-babelrc-up": "^0.4.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"serve-static": "^1.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}