-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
53
54
55
56
57
{
"name": "sweet-collections",
"version": "1.1.0",
"description": "Different Javascript collections written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/bacali95/sweet-collections.git",
"type": "git"
},
"author": {
"name": "Nasreddine Bac Ali",
"email": "nasreddine.bacali95@gmail.com",
"url": "https://nasreddinebacali.info"
},
"keywords": [
"collections",
"algorithms",
"lrumap",
"lfumap",
"sortedmap",
"lruset",
"lfuset",
"sortedset",
"sortedarray",
"heap"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "rm -rf dist && tsc",
"benchmark": "node benchmark",
"lint": "eslint .",
"prettier": "prettier --list-different '**/{*,.*}.ts'",
"test": "jest --coverage --no-cache && make-coverage-badge"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chalk": "^4.1.0",
"collections": "^5.1.12",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.1",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}