-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.47 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
{
"name": "bisonica",
"version": "0.1.15",
"type": "module",
"exports": {
".": "./source/chart.js",
"./styles.css": "./source/index.css"
},
"repository": {
"type": "git",
"url": "https://github.com/vijithassar/bisonica.git"
},
"types": "index.d.ts",
"scripts": {
"build": "esbuild --bundle --format=esm --external:d3 --outfile=build/bisonica.js source/chart.js",
"postbuild": "yarn run archive",
"archive": "zip -jr build/bisonica-$(npm view bisonica version).zip build/bisonica.js source/index.css",
"documentation": "jsdoc --recurse source --destination documentation --template node_modules/docdash",
"lint-git": "commitlint --to=HEAD --from=11cd541",
"lint-js": "eslint source fixtures tests/**/*.js tests/*.js",
"lint-styles": "stylelint source/index.css",
"lint-markdown": "markdownlint ./**/*.md --ignore CHANGELOG.md --ignore LICENSE.md --ignore node_modules",
"check-markdown-links": "markdown-link-check README.md CONTRIBUTING.md",
"test": "qunit --require jsdom-global/register --require ./tests/browser-shim.cjs tests/**/*.js",
"test-serve": "testem --file ./tests/testem.cjs",
"test-ci": "testem --file ./tests/testem.cjs ci",
"types": "tsc --noEmit --allowJs --checkJs --moduleResolution node --target ES2022 ./source/chart.js",
"release": "npx standard-version",
"coverage": "c8 --all --src source --exclude fixtures --exclude tests yarn run test",
"audit": "yarn audit",
"prerelease": "yarn run audit",
"benchmark": "node --require jsdom-global/register --require ./tests/browser-shim.cjs benchmarks/benchmarks.js"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/d3": "^7.4.0",
"c8": "^7.12.0",
"d3": "^7.6.1",
"docdash": "^2.0.1",
"esbuild": "^0.14.43",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^46.4.2",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"esm": "^3.2.25",
"jsdoc": "^4.0.2",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"markdown-link-check": "^3.11.2",
"markdownlint-cli": "^0.35.0",
"nanobench": "^3.0.0",
"qunit": "^2.19.3",
"standard-version": "^9.5.0",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"testem": "^3.8.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"d3": "^6.7.0 || ^7.0.0"
}
}