-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 948 Bytes
/
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
{
"name": "cellref",
"version": "5.0.0",
"description": "Convert between cell reference styles (A1 notation & R1C1 notation)",
"main": "index.js",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -x spec.js spec.js",
"lint": "standard *.js",
"test": "mocha spec.js"
},
"author": "Michael David Barrett <mike182uk@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mike182uk/cellref.git"
},
"homepage": "https://github.com/mike182uk/cellref",
"bugs": {
"url": "https://github.com/mike182uk/cellref/issues"
},
"keywords": [
"A1",
"R1C1",
"excel",
"xlsx",
"xls",
"cell",
"spreadsheet"
],
"engines": {
"node": ">=12"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.3",
"standard": "^17.0.0"
}
}