-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
46
47
48
49
{
"name": "algorithms-and-data-structures-js",
"version": "0.0.1",
"engines": {
"node": ">=22.13.0",
"npm": ">=11.0.0"
},
"type": "commonjs",
"description": "Algorithms and data structures implemented in JavaScript",
"scripts": {
"test": "node --test --test-reporter dot",
"full-test": "concurrently \"npm run type-check\" \"npm test\" \"npm run lint-test\"",
"unit-test-spec": "node --test --test-reporter spec",
"unit-test-dot": "node --test --test-reporter dot",
"unit-test-tap": "node --test --test-reporter tap",
"lint-test": "standard .",
"type-check": "tsc",
"build-jsdoc": "./node_modules/.bin/jsdoc --readme ./README.md --configure ./jsdoc.json --destination ./docs --recurse .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCPedroza/algorithms-and-data-structures-js.git"
},
"keywords": [
"algorithms",
"data-structures",
"project-euler"
],
"author": "JCPedroza",
"license": "MIT",
"bugs": {
"url": "https://github.com/JCPedroza/algorithms-and-data-structures-js/issues"
},
"homepage": "https://github.com/JCPedroza/algorithms-and-data-structures-js",
"devDependencies": {
"@types/node": "22.13.5",
"concurrently": "9.1.2",
"husky": "9.1.7",
"jsdoc": "4.0.4",
"standard": "17.1.2",
"typescript": "5.7.3"
},
"standard": {
"ignore": [
"/docs/"
]
}
}