forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.75 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
{
"name": "exceljs",
"version": "0.4.13",
"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": {
"test": "npm run unit-test && npm run integration-test && npm run end-to-end-test && npm run browser-test",
"clean-build": "npm run clean && npm run build",
"lint": "eslint --ext .js lib spec",
"browser-test": "./node_modules/.bin/grunt jasmine",
"unit-test": "mocha --require spec/config/setup spec/unit --require spec/config/setup-unit --recursive",
"integration-test": "mocha --require spec/config/setup spec/integration --recursive",
"native-integration-test": "export EXCEL_NATIVE=yes && mocha --require spec/config/setup spec/integration --recursive",
"end-to-end-test": "mocha --require spec/config/setup spec/end-to-end --recursive",
"clean": "rm -rf build/ && rm -rf dist",
"build": "./node_modules/.bin/grunt build",
"manual-test": "node spec/manual/app.js",
"preversion": "npm run clean && npm run build && npm test",
"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.17.1",
"promish": ">=5.0.2",
"sax": "^1.2.2",
"unzip2": "^0.2.5"
},
"devDependencies": {
"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",
"memorystream": "*",
"mocha": "*",
"request": "*",
"semver": "*",
"uglifyjs": "^2.4.10",
"underscore": "^1.8.3"
},
"main": "./dist/es5/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
]
}