forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.97 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
{
"name": "exceljs",
"version": "1.1.0",
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"private": false,
"license": "MIT",
"author": "Guyon Roche",
"repository": {
"type": "git",
"url": "https://github.com/guyonroche/exceljs.git"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"pretest": "npm run build",
"test": "npm run test:full",
"test:full": "npm run test:nsp && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:browser",
"test:nsp": "nsp check",
"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": "./node_modules/.bin/grunt jasmine",
"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 --ext .js lib spec",
"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"
},
"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": "^1.3.0",
"fast-csv": "^2.4.0",
"jszip": "3.1.3",
"moment": ">=2.19.3",
"node-unzip-2": "^0.2.7",
"promish": ">=5.0.2",
"sax": "^1.2.2"
},
"devDependencies": {
"@types/node": "*",
"babel-eslint": "^7.2.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"bluebird": "^3.4.7",
"browserify": "^14.1.0",
"chai": "*",
"chai-datetime": "*",
"chai-xml": "*",
"dirty-chai": "^1.2.2",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.10.3",
"express": "*",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^1.1.0",
"grunt-contrib-uglify": "^2.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-lib-phantomjs": "^1.1.0",
"memorystream": "*",
"mocha": "*",
"nsp": "^3.2.1",
"request": "*",
"semver": "*",
"uglifyjs": "^2.4.10",
"underscore": "^1.8.3"
},
"main": "./dist/es5/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
]
}