-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 KB
/
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
47
48
49
50
51
{
"name": "excel-ent",
"version": "4.3.3",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"description": "The purpose of this lib is to help you export data in Excel and CSV. It's a SheetJS wrapper.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release"
},
"dependencies": {
"ts-node": "^9.1.1",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@types/node": "^16.4.6",
"semantic-release": "^21.0.9",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"files": [
"lib/**/*"
],
"keywords": [
"excel",
"xls",
"csv",
"export"
],
"author": "Leonardo R. Dias",
"repository": {
"type": "git",
"url": "git+https://github.com/leoreisdias/excel-ent.git"
},
"homepage": "https://github.com/leoreisdias/excel-ent#readme",
"bugs": {
"url": "https://github.com/leoreisdias/excel-ent/issues"
},
"release": {
"branches": [
"main"
]
}
}