-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
50
51
52
53
54
{
"name": "yves",
"version": "1.0.97",
"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 <[email protected]>",
"contributors": [
{
"name": "Alexis Sellier",
"email": "[email protected]"
},
{
"name": "Charlie Robbins",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "./lib/yves.mjs",
"scripts": {
"test": "DEBUG=* node test/*-test.js",
"build": "browserify -p esmify --standalone yves . > dist/yves.js",
"lint": "eslint .",
"prepublish": "npm run build"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": "> 0.1.90"
},
"dependencies": {
"debug": "^4.4.0",
"deep-sort-object": "^1.0.2",
"jsonc": "^2.0.0",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"browserify": "^17.0.1",
"eslint": "^9.20.1",
"esmify": "^2.1.1"
}
}