-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "algorithm-visualizer",
"version": "2.3.9",
"description": "Visualization Library for JavaScript",
"keywords": [
"algorithm",
"data-structure",
"visualization",
"animation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/algorithm-visualizer/tracers.js.git"
},
"license": "MIT",
"main": "dist/algorithm-visualizer.cjs.js",
"module": "dist/algorithm-visualizer.esm.js",
"browser": "dist/algorithm-visualizer.umd.js",
"types": "dist/types",
"dependencies": {
"axios": "^0.18.0",
"opn": "^5.4.0"
},
"devDependencies": {
"@types/node": "^12.0.8",
"ava": "^2.1.0",
"gh-pages": "^2.0.1",
"nyc": "^14.1.1",
"rollup": "^1.15.1",
"rollup-plugin-typescript2": "^0.21.1",
"tslib": "^1.10.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rm -rf dist && rollup -c",
"docs": "typedoc",
"test": "nyc ava"
},
"files": [
"dist"
],
"ava": {
"helpers": [
"test/helpers/**/*"
]
}
}