-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "algo-ds",
"version": "2.0.6",
"description": "Implementations of algorithms and data structures in TypeScript",
"license": "MIT",
"author": "Yarik Leto <[email protected]>",
"homepage": "https://github.com/yarikleto/algo-ds#readme",
"repository": {
"type": "git",
"url": "https://github.com/yarikleto/algo-ds"
},
"main": "./build/algo-ds.cjs.js",
"module": "./build/algo-ds.esm.js",
"browser": "./build/algo-ds.umd.js",
"types": "./build/algo-ds.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src --fix",
"test": "jest --colors --notify",
"test:watch": "jest --watch",
"test:coverage": "npm run test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"npm:publish": "npm run lint && npm run test && npm run build && npm run test:badges && npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.0.0",
"node-notifier": "^10.0.1",
"rollup": "4.18.0",
"rollup-plugin-tslint": "0.2.2",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
},
"keywords": [
"data structures",
"js",
"javascript",
"ts",
"typescript",
"doubly linked list"
]
}