-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
{
"name": "dsaw",
"version": "1.0.0",
"description": "Demos for \"Data Structures and Algorithms in the Wild\"",
"scripts": {
"clean": "rm -rf .parcel-cache && rm -rf dist",
"build": "npm run build:index && npm run build:quadtrees && npm run build:tries",
"build:index": "parcel build index.html --dist-dir dist --public-url .",
"build:quadtrees": "parcel build quadtrees/demos/*.html --dist-dir dist/quadtrees/demos --public-url .",
"build:tries": "parcel build tries/demos/*.html --dist-dir dist/tries/demos --public-url .",
"deploy": "npm run clean && npm run build && gh-pages -d dist",
"dev": "parcel index.html",
"test": "node quadtrees/*.test.js && node tries/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chidiwilliams/dsaw.git"
},
"author": "Chidi Williams",
"license": "ISC",
"bugs": {
"url": "https://github.com/chidiwilliams/dsaw/issues"
},
"homepage": "https://github.com/chidiwilliams/dsaw#readme",
"dependencies": {
"d3": "^7.1.1",
"d3-quadtree": "^3.0.1",
"d3-scale": "^4.0.0",
"get-pixels": "^3.3.3"
},
"devDependencies": {
"parcel": "^2.0.1",
"gh-pages": "^2.2.0"
}
}