forked from mgcrea/node-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "node-xlsx",
"author": "Olivier Louvignes <olivier@mg-crea.com>",
"version": "0.7.4",
"description": "NodeJS Excel files parser & builder",
"main": "lib/index.js",
"scripts": {
"start": "npm run test:watch",
"test": "mocha",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc --reporter=lcov npm test -- --reporter dot && nyc report",
"lint": "eslint src/",
"compile": "rimraf lib/*; babel src/ -d lib/ -s",
"compile:watch": "npm run compile -- -w",
"prepublish": "npm run compile"
},
"repository": "github:mgcrea/node-xlsx",
"license": "Apache-2.0",
"dependencies": {
"xlsx": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"expect": "^1.20.2",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"rimraf": "^2.5.4"
},
"keywords": [
"excel",
"parser",
"builder",
"xlsx",
"xls"
]
}