-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 937 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
{
"name": "to-spreadsheet",
"version": "1.1.5",
"description": "npm package to create spreadsheet in node environment and in browser",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test:compile": "npx ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maifeeulasad/to-spreadsheet.git"
},
"author": "Maifee Ul Asad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maifeeulasad/to-spreadsheet/issues"
},
"homepage": "https://github.com/maifeeulasad/to-spreadsheet#readme",
"dependencies": {
"archiver": "^6.0.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1"
},
"files": [
"lib"
],
"devDependencies": {
"@types/archiver": "^5.3.3",
"@types/file-saver": "^2.0.5",
"@types/node": "^17.0.35",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}