-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "hermes-parallel-coordinates",
"version": "0.6.17",
"description": "A lightweight and fast canvas-based parallel coordinates chart library.",
"keywords": [
"es6",
"parallel coordinates",
"parcoords",
"visualization",
"canvas"
],
"author": "Caleb Kang <[email protected]>",
"homepage": "https://hkang1.github.io/hermes",
"repository": {
"type": "git",
"url": "git+https://github.com/hkang1/hermes.git"
},
"bugs": {
"url": "https://github.com/hkang1/hermes/issues"
},
"license": "ISC",
"main": "./dist/hermes.cjs.js",
"module": "./dist/hermes.esm.js",
"types": "./dist/hermes.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && rollup -c",
"build:watch": "watch 'npm run build' src",
"demos": "web-dev-server --open /demos/default.html",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"clean": "rm -rf ./tsc-out"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@web/dev-server": "^0.1.29",
"eslint": "^8.7.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.5.0",
"jest-extended": "^2.0.0",
"jest-junit": "^13.0.0",
"jsdom": "^19.0.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.64.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"watch": "^0.13.0"
},
"dependencies": {
"hermes-parallel-coordinates": "^0.6.13"
}
}