forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "exceljs",
"version": "2.0.1",
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/exceljs/exceljs.git"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./dist/es5/index.js",
"browser": "./dist/es5/exceljs.browser.js",
"types": "./index.d.ts",
"files": [
"dist",
"lib",
"modern.browser.js",
"modern.nodejs.js",
"LICENSE",
"README.md",
"index.d.ts"
],
"scripts": {
"pretest": "npm run build",
"test": "npm run test:full",
"test:full": "npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:browser",
"test:unit": "mocha --require spec/config/setup spec/unit --require spec/config/setup-unit --recursive",
"test:integration": "mocha --require spec/config/setup spec/integration --recursive",
"test:end-to-end": "mocha --require spec/config/setup spec/end-to-end --recursive",
"test:browser": "if [ ! -f .disable-test-browser ]; then ./node_modules/.bin/grunt jasmine; fi ",
"test:native-integration": "export EXCEL_NATIVE=yes && mocha --require spec/config/setup spec/integration --recursive",
"test:manual": "node spec/manual/app.js",
"clean-build": "npm run clean && npm run build",
"lint": "eslint --format node_modules/eslint-friendly-formatter .",
"lint:fix": "prettier-eslint --write \"**/*.js\"",
"lint:staged": "lint-staged",
"clean": "rm -rf build/ && rm -rf dist",
"build": "./node_modules/.bin/grunt build",
"preversion": "npm run clean && npm run build && npm run test:full",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --format node_modules/eslint-friendly-formatter",
"git add"
]
},
"keywords": [
"xlsx",
"json",
"csv",
"excel",
"font",
"border",
"fill",
"number",
"format",
"number format",
"alignment",
"office",
"spreadsheet",
"workbook",
"defined names",
"data validations",
"rich text",
"in-cell format",
"outlineLevel",
"views",
"frozen",
"split",
"pageSetup"
],
"dependencies": {
"archiver": "^3.0.0",
"core-js": "^3.2.1",
"fast-csv": "^2.4.1",
"jszip": "^3.1.5",
"dayjs": "^1.8.15",
"regenerator-runtime": "^0.13.3",
"sax": "^1.2.4",
"tmp": "^0.1.0",
"unzipper": "^0.9.12"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/node": "^10.12.0",
"babel-eslint": "^10.0.1",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"chai-xml": "^0.3.2",
"dirty-chai": "^2.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"express": "^4.16.4",
"grunt": "^1.0.3",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.0.3",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-lib-phantomjs": "^1.1.0",
"husky": "^2.2.0",
"lint-staged": "^8.1.5",
"memorystream": "^0.3.1",
"mocha": "^5.2.0",
"prettier-eslint": "^8.8.1",
"prettier-eslint-cli": "^4.6.1",
"request": "^2.88.0",
"semver": "^5.6.0",
"uglify-js": "^3.4.9"
}
}