forked from DickyNet/node-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 KB
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
59
{
"name": "style-node-xlsx",
"author": "suhli",
"version": "0.15.3-style-formula",
"description": "NodeJS Excel files parser & builder",
"main": "lib/index.js",
"scripts": {
"start": "npm run 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": "cross-env NODE_ENV=production babel src/ -d lib/ -s",
"help": "cross-env NODE_ENV=production babel --help",
"build:watch": "npm run build -- -w",
"prepublish": "npm run build"
},
"repository": "github:suhli/node-xlsx",
"license": "Apache-2.0",
"dependencies": {
"buffer-from": "^1.1.1",
"xlsx": "^0.14.4",
"xlsx-styled": "0.8.20-formula"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"codacy-coverage": "^3.0.0",
"cross-env": "^7.0.3",
"debug-utils": "^0.3.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"expect": "^23.1.0",
"jest": "^23.1.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"excel",
"parser",
"builder",
"xlsx",
"xls"
],
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/setup.js"
]
}
}