-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
41
42
43
44
45
{
"name": "data-structure",
"version": "1.0.0",
"description": "Various data structures and algorithms implemented in JavaScript.",
"type": "module",
"main": "index.js",
"scripts": {
"test": "c8 mocha",
"test:watch": "mocha --watch",
"test:coverage": "c8 report --reporter=text-lcov",
"test:coverage:html": "c8 report --reporter=html",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "npm run test:watch",
"build": "echo 'No build step needed for this project'",
"clean": "rm -rf coverage",
"prepare": "husky"
},
"overrides": {
"serialize-javascript": "^7.0.4"
},
"author": "Joe Karlsson",
"license": "ISC",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"globals": "^17.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^11.3.0",
"prettier": "^3.2.5"
}
}