-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 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
37
38
39
40
{
"name": "datastructures",
"version": "1.0.0",
"description": "Typescript's data structures implementation.",
"main": "index.js",
"scripts": {
"test": "npx jest",
"lint": "eslint \"src/**/*.ts\"",
"hugo": "echo hugo"
},
"exports": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/brianunlam/datastructures.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/brianunlam/datastructures/issues"
},
"homepage": "https://github.com/brianunlam/datastructures#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}