This repository has been archived by the owner on Apr 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.52 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
50
51
52
{
"name": "singly-linked-list",
"version": "1.4.0",
"description": "Javascript implementation of singly linked list data structure",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"pretest": "yarn lint",
"test": "jest src/__tests__/*.spec.ts",
"lint": "eslint src/index.ts src/lib/*.ts",
"prepublishOnly": "yarn lint && yarn test",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonsjones/singly-linked-list.git"
},
"keywords": [
"singly linked-list",
"abstract data type",
"linked list",
"data structure"
],
"author": "Jason Jones",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonsjones/singly-linked-list/issues"
},
"homepage": "https://github.com/jasonsjones/singly-linked-list",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"files": [
"dist/**/*"
]
}