-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 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
50
51
52
53
{
"name": "yves",
"version": "1.1.5",
"description": "a customizable value inspector",
"url": "http://github.com/jorisroling/yves",
"repository": {
"type": "git",
"url": "git+https://github.com/jorisroling/yves.git"
},
"type": "module",
"keywords": [
"inspector",
"debug",
"inspect",
"print"
],
"author": "Joris Röling <joris@bonboa.com>",
"license": "MIT",
"main": "./lib/yves.mjs",
"exports": {
".": "./lib/yves.mjs"
},
"files": [
"lib",
"dist"
],
"scripts": {
"test": "vitest run",
"demo": "DEBUG=* node test/yves-test.js",
"build": "browserify -p esmify --standalone yves . > dist/yves.js",
"lint": "eslint .",
"prepublish": "npm run build"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"debug": "^4.4.3",
"deep-sort-object": "^1.0.2",
"globals": "^17.5.0"
},
"devDependencies": {
"browserify": "^17.0.1",
"eslint": "^10.2.1",
"esmify": "^2.1.1",
"vitest": "^4.1.5"
}
}