-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "xlsx-template-ex",
"version": "0.2.9",
"description": "The template engine for generate xlsx documents",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Konstantin Polyntsov <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:optimistex/xlsx-template-ex.git"
},
"bugs": {
"url": "https://github.com/optimistex/xlsx-template-ex/issues"
},
"homepage": "https://github.com/optimistex/xlsx-template-ex#readme",
"scripts": {
"start": "npm run build && node ./dist/example.js",
"start-dev": "node $NODE_DEBUG_OPTION -r ts-node/register ./src/example.ts dev",
"build": "rm -rf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"exceljs": "^1.13.0",
"lodash": "^4.17.15",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/node": "^10.14.10",
"nodemon": "^1.19.1",
"ts-node": "^7.0.1",
"typescript": "^3.5.2"
},
"contributors": [
{
"name": "Konstantin Polyntsov",
"email": "[email protected]",
"url": "https://github.com/optimistex"
},
{
"name": "Arlio Bizarre",
"url": "https://bitbucket.org/arlio/"
}
]
}