source: frontend/node_modules/reusify/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "name": "reusify",
3 "version": "1.1.0",
4 "description": "Reuse objects and functions with style",
5 "main": "reusify.js",
6 "types": "reusify.d.ts",
7 "scripts": {
8 "lint": "eslint",
9 "test": "tape test.js",
10 "test:coverage": "c8 --100 tape test.js",
11 "test:typescript": "tsc"
12 },
13 "pre-commit": [
14 "lint",
15 "test",
16 "test:typescript"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/mcollina/reusify.git"
21 },
22 "keywords": [
23 "reuse",
24 "object",
25 "performance",
26 "function",
27 "fast"
28 ],
29 "author": "Matteo Collina <hello@matteocollina.com>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/mcollina/reusify/issues"
33 },
34 "homepage": "https://github.com/mcollina/reusify#readme",
35 "engines": {
36 "node": ">=0.10.0",
37 "iojs": ">=1.0.0"
38 },
39 "devDependencies": {
40 "@types/node": "^22.9.0",
41 "eslint": "^9.13.0",
42 "neostandard": "^0.12.0",
43 "pre-commit": "^1.2.2",
44 "tape": "^5.0.0",
45 "c8": "^10.1.2",
46 "typescript": "^5.2.2"
47 },
48 "dependencies": {
49 }
50}
Note: See TracBrowser for help on using the repository browser.