-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
48 lines (48 loc) · 897 Bytes
/
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
{
"name": "stringify-object",
"version": "5.0.0",
"description": "Stringify an object/array like JSON.stringify just without all the double-quotes",
"license": "BSD-2-Clause",
"repository": "yeoman/stringify-object",
"funding": "https://github.com/yeoman/stringify-object?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"object",
"stringify",
"pretty",
"print",
"dump",
"format",
"type",
"json"
],
"dependencies": {
"get-own-enumerable-keys": "^1.0.0",
"is-obj": "^3.0.0",
"is-regexp": "^3.1.0"
},
"devDependencies": {
"ava": "^5.1.1",
"xo": "^0.53.1"
},
"xo": {
"ignores": [
"test/fixtures/*.js"
]
}
}