forked from hyperatom/json-form-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1016 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
{
"name": "json-form-data",
"version": "1.3.0",
"description": "A library to convert javascript objects into form data.",
"main": "./src/jsonToFormData.js",
"scripts": {
"test": "karma start",
"test:watch": "karma start --single-run=false --auto-watch=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperatom/json-form-data.git"
},
"keywords": [
"json",
"formdata",
"form",
"data",
"convert"
],
"author": "Adam Barrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperatom/json-form-data/issues"
},
"homepage": "https://github.com/hyperatom/json-form-data#readme",
"devDependencies": {
"chai": "^4.1.2",
"formdata-polyfill": "^3.0.9",
"karma": "^2.0.0",
"karma-browserstack-launcher": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.0.4",
"weakmap-polyfill": "^2.0.0"
}
}