-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "data-structures",
"version": "1.0.0",
"description": "A playground for implementing data structures in JS",
"author": "Wyatt Barnes",
"license": "MIT",
"scripts": {
"build": "./scripts/project/build.sh",
"clean": "./scripts/project/clean.sh",
"create-package": "./scripts/project/create-package.js",
"generate-documentation": "./scripts/project/generate-documentation.sh",
"lint": "./script/project/lint.sh",
"prebuild": "./scripts/project/prebuild.sh",
"prewatch": "./scripts/project/prewatch.sh",
"test": "./scripts/project/test.sh",
"watch": "./scripts/project/watch.sh"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.4",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typedoc": "^0.17.4",
"typescript": "^3.8"
}
}