-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.2 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
49
50
51
52
53
{
"name": "@actionpower/i18n-spreadsheet-to-json",
"version": "0.0.33",
"type": "module",
"main": "index.mts",
"license": "MIT",
"description": "Converts a Google Sheets spreadsheet to a JSON file",
"keywords": [
"i18n",
"spreadsheet",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/actionpower/i18n-spreadsheet-to-json.git"
},
"author": "Action Power",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.setwith": "^4.3.9",
"@types/node": "^20.10.4",
"@typescript-eslint/parser": "^5.0.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"axios": "^1.6.2",
"lodash.merge": "^4.6.2",
"lodash.setwith": "^4.3.2"
},
"bin": {
"i18n": "bin/cli.js"
},
"private": false,
"files": [
"cli",
"dist"
],
"scripts": {
"test": "jest -c jest.config.ts"
}
}