-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 771 Bytes
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
{
"name": "alhadis.utils",
"version": "v0.1.3",
"files": ["lib", "index.*"],
"description": "Battle-hardened suite of self-contained utility functions.",
"keywords": ["utility", "helper", "functional", "utils", "browser"],
"repository": "https://github.com/Alhadis/Utils",
"author": "John Gardner <gardnerjohng@gmail.com>",
"license": "ISC",
"main": "index.mjs",
"type": "module",
"types": "./index.d.ts",
"engines": {
"node": ">=13.2.0"
},
"devDependencies": {
"@alhadis/eslint-config": "^2.3.3",
"jg": "Alhadis/JG",
"c8": "^7.8.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.0.3",
"mocha-when": "^1.0.1"
},
"scripts": {
"lint": "make lint",
"test": "make test",
"prepare": "make"
}
}