-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.06 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.06 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "algorithmx",
"version": "2.0.2",
"description": "A library for network visualization and algorithm simulation.",
"main": "dist/algorithmx.js",
"module": "dist/algorithmx.es.js",
"unpkg": "dist/algorithmx.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"dev": "npx rollup --watch -c --environment mode:dev,format:iife",
"build:es": "npx rollup -c --environment format:es",
"build:cjs": "npx rollup -c --environment format:cjs",
"build:iife": "npx rollup -c --environment format:iife",
"build:iife:min": "npx rollup -c --environment format:iife,min:true",
"build:umd": "npx rollup -c --environment format:umd",
"build:umd:min": "npx rollup -c --environment format:umd,min:true",
"build:umd:dev": "npx rollup -c --sourcemap --environment format:umd",
"build": "npm run build:es && npm run build:iife && npm run build:iife:min && npm run build:umd && npm run build:umd:min",
"typecheck": "npx tsc --noEmit",
"docs": "npx typedoc",
"karma": "npx karma start karma.config.js",
"test": "npm run typecheck && npm run karma",
"prepublishOnly": "npm run test",
"format": "npx prettier --write --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/algrx/algorithmx.git"
},
"keywords": [
"network",
"graph",
"visualization"
],
"author": {
"name": "Alex Socha",
"url": "https://github.com/alexsocha"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/algrx/algorithmx/issues"
},
"homepage": "https://github.com/algrx/algorithmx",
"dependencies": {
"d3-color": "^2.0.0",
"d3-dispatch": "^2.0.0",
"d3-drag": "^2.0.0",
"d3-ease": "^2.0.0",
"d3-interpolate": "^2.0.1",
"d3-path": "^2.0.0",
"d3-selection": "^2.0.0",
"d3-shape": "^2.0.0",
"d3-timer": "^2.0.0",
"d3-transition": "^2.0.0",
"d3-zoom": "^2.0.0",
"webcola": "^3.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-typescript": "6.0.0",
"@types/chai": "4.2.12",
"@types/d3": "6.1.0",
"@types/mocha": "8.0.3",
"chai": "4.2.0",
"husky": "4.3.0",
"karma": "5.2.2",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-typescript": "5.2.0",
"mocha": "8.1.3",
"prettier": "2.1.2",
"pretty-quick": "3.0.2",
"rollup": "2.28.2",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-serve": "1.0.4",
"rollup-plugin-terser": "7.0.2",
"tslib": "2.0.1",
"typedoc": "0.19.2",
"typescript": "4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}