forked from mgcrea/node-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "node-xlsx",
"author": "Olivier Louvignes <[email protected]>",
"version": "0.16.1",
"description": "NodeJS Excel files parser & builder",
"main": "lib/index.js",
"scripts": {
"start": "yarn test:watch",
"test": "NODE_ENV=test jest --runInBand",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage",
"lint": "NODE_ENV=test eslint src/ test/",
"build": "rimraf lib/*; NODE_ENV=production babel src/ -d lib/ -s",
"build:watch": "yarn build -- -w",
"prepublish": "yarn build"
},
"repository": "github:mgcrea/node-xlsx",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.12.5",
"buffer-from": "^1.1.1",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"codacy-coverage": "^3.4.0",
"debug-utils": "^0.5.3",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"expect": "^26.6.2",
"jest": "^26.6.3",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"excel",
"parser",
"builder",
"xlsx",
"xls"
],
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/setup.js"
]
}
}