-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
52
53
54
55
56
57
58
{
"name": "xlsx-hero",
"version": "0.0.1",
"description": "A light weight xlsx reader || builder in nodejs",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"type-check": "tsc",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest -u --detectOpenHandles",
"lint": "tslint -c tslint.json -p ./ --fix"
},
"jest": {
"setupFiles": [
"<rootDir>/test/jest.init.js"
],
"testMatch": [
"<rootDir>/test/**.test.js"
],
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haowen737/xlsx-hero.git"
},
"keywords": [
"node",
"xlsx"
],
"author": "Haowen <[email protected]>",
"license": "Apache",
"bugs": {
"url": "https://github.com/haowen737/xlsx-hero/issues"
},
"homepage": "https://github.com/haowen737/xlsx-hero#readme",
"devDependencies": {
"@types/lodash": "^4.14.119",
"babel-polyfill": "^6.26.0",
"jest": "^24.8.0",
"koa": "^2.6.2",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"regenerator-runtime": "^0.13.1",
"supertest": "^3.3.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"dependencies": {
"async-validator": "^1.10.0",
"lodash": "^4.17.15",
"node-xlsx": "^0.12.1"
}
}