-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "@nocke/util",
"version": "1.0.0",
"license": "MIT",
"description": "NodeJS utilities and helpers – logging, asserts, coloring. In particular useful for writing scripts.",
"type": "module",
"author": "Frank Nocke",
"scripts": {
"clean": "rm -rf ./node_modules ./package-lock.json",
"start": "./examples/demo.js",
"test": "mocha --loader=esmock",
"test:loop": "./script/saveloop . clear \"npm t $npm_config_test\"",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"create-types": "rm src/*.d.ts*; tsc"
},
"keywords": [
"nodejs",
"cli",
"util",
"dconf",
"asserts",
"logging",
"scripts"
],
"homepage": "https://github.com/nocke/util#readme",
"bugs": {
"url": "https://github.com/nocke/util/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nocke/util.git"
},
"main": "main.js",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^9.14.0",
"esmock": "^2.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"_": " ↓ fixes [email protected] deprecation/leak warnings – https://stackoverflow.com/a/78799034",
"overrides": {
"glob": "^9"
},
"engines": {
"node": ">=20"
}
}