forked from droberts-sea/ads-binary-search-trees
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "binary-search-trees",
"version": "1.0.0",
"description": "code demonstrating various binary-search-trees for Ada's Advanced Data Strucutres course",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"build": "webpack",
"start": "webpack-dev-server",
"deploy": "npm run build && gh-pages -d dist",
"doc": "node_modules/.bin/jsdoc src/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/droberts-ada/t9-dictionary.git"
},
"author": "Dan Roberts",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"gh-pages": "^2.2.0",
"ink-docstrap": "^1.3.2",
"jest": "^25.1.0",
"jest-expect-message": "^1.0.2",
"jsdoc": "^3.6.4",
"raw-loader": "^4.0.0",
"seedrandom": "^3.0.5",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"worker-plugin": "^4.0.2"
},
"dependencies": {},
"jest": {
"setupFilesAfterEnv": [
"jest-expect-message"
],
"testEnvironment": "node"
}
}