-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "excel",
"version": "1.0.0",
"description": "Simple NodeJS XLSX parser.",
"main": "commonjs/excelParser.js",
"contributors": [
{
"name": "Jake Scott",
"email": "[email protected]"
},
{
"name": "Fabian Tollenaar",
"email": "[email protected]"
},
{
"name": "Cat Amphetamine",
"email": "[email protected]"
}
],
"scripts": {
"build": "babel ./excelParser.js --out-dir ./commonjs --source-maps",
"test": "npm run build && mocha --reporter list test/test.js",
"prepublish": "npm run test"
},
"dependencies": {
"unzipper": "^0.8.11",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"mocha": "^1.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/trevordixon/excel.js"
},
"keywords": [
"excel",
"xlsx"
],
"author": "Trevor Dixon <[email protected]>",
"license": "MIT"
}