-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "xlsx-extended",
"version": "1.0.8",
"description": "out of the box writer and reader for xlsx",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text-lcov node_modules/mocha/bin/mocha test/*.js | coveralls",
"test:coverage": "nyc --reporter=lcov node_modules/mocha/bin/mocha test/*.js",
"prepublishold": "node node_modules/coffee-script/bin/coffee -o lib -c src/*.coffee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoCapocci/xslx-extended.git"
},
"keywords": [
"node",
"xlsx",
"excel"
],
"author": "SG Galileo Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/HugoCapocci/xslx-extended/issues"
},
"homepage": "https://github.com/HugoCapocci/xslx-extended#readme",
"dependencies": {
"moment": "2.22.2",
"xlsx": "0.16.0"
},
"devDependencies": {
"coveralls": "2.13.1",
"mocha": "3.5.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "11.1.0",
"should": "11.1.2",
"should-sinon": "0.0.6",
"sinon": "1.17.7"
},
"nyc": {
"exclude": [
"test"
],
"check-coverage": true
},
"engines": {
"node": ">=8.0.0"
}
}