-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 850 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
{
"name": "json-porter",
"version": "1.0.7",
"description": "Export any JavaScript object as a JSON file download or upload a JSON file to import a JavaScript object",
"main": "json-porter.js",
"scripts": {
"build": "tsc",
"clean": "del json-porter.js json-porter.js.map json-porter.d.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"JSON",
"JavaScript",
"TypeScript",
"import",
"importer",
"export",
"exporter",
"download",
"downloader",
"upload",
"uploader",
"stringify",
"parse",
"serialize",
"serialization",
"file",
"json file",
".json",
"save"
],
"author": "Mark Gabriel",
"license": "MIT",
"devDependencies": {
"@types/es6-promise": "^3.3.0"
},
"dependencies": {
"es6-promise": "^4.2.8"
}
}