-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 915 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
{
"name": "obj-str",
"version": "1.1.0",
"repository": "lukeed/obj-str",
"description": "A tiny library for serializing Object values to Strings.",
"unpkg": "dist/obj-str.min.js",
"module": "dist/obj-str.mjs",
"main": "dist/obj-str.js",
"types": "index.d.ts",
"umd:name": "objstr",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build": "bundt",
"test": "uvu -r esm -i fixtures test"
},
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"react",
"preact",
"classes",
"classname",
"classnames",
"object",
"object-keys",
"object-string",
"object-values",
"serialize"
],
"devDependencies": {
"@babel/core": "7.12.17",
"bundt": "1.1.2",
"esm": "3.2.25",
"uvu": "0.5.1"
}
}