forked from kieranbarker/serialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 926 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
{
"name": "@kieranbarker/serialize",
"version": "1.0.1",
"description": "Serialize form data into a query string, array, object, or JSON string.",
"browser": "./dist/serialize.cjs.min.js",
"module": "./dist/serialize.es.min.js",
"scripts": {
"test": "npx jest --coverage",
"build": "npx rollup --config"
},
"repository": {
"type": "git",
"url": "https://github.com/kieranbarker/serialize.git"
},
"keywords": [
"serialize",
"class",
"es2015",
"es6"
],
"author": {
"name": "Kieran Barker",
"email": "[email protected]",
"url": "https://kbarker.dev"
},
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/kieranbarker/serialize/issues"
},
"homepage": "https://github.com/kieranbarker/serialize#readme",
"devDependencies": {
"jest": "^26.6.3",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2"
}
}