-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 787 Bytes
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
{
"name": "a1ter",
"version": "0.1.0",
"description": "A1 notation (used in Excel, Spreadsheet) converter for JavaScript, and cli.",
"main": "dist/index.js",
"repository": "ssh://git@github.com/euxn23/a1ter.git",
"author": "euxn23 <euxn23@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^12.12.31",
"jest": "^25.2.3",
"meta-npmignore": "^0.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"keywords": [
"a1",
"a1-notation",
"excel",
"spreadsheet",
"column",
"cli",
"zero-dependency"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"prepare": "npm run build && meta-npmignore"
}
}