-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@idapgroup/spreadsheet-localization-parser",
"version": "1.1.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/idapgroup/spreadsheet-localization-parser.git"
},
"scripts": {
"start:dev": "npx nodemon",
"start": "npm run build && node build/index.js",
"build": "rimraf ./build && tsc",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "nyc ./node_modules/.bin/_mocha 'tests/**/*.spec.ts'",
"prepare": "yarn fix && yarn test && yarn build"
},
"keywords": [
"google spreadsheet",
"localization",
"parser",
"i18n"
],
"homepage": "https://github.com/idapgroup/spreadsheet-localization-parser#readme",
"bugs": {
"url": "https://github.com/idapgroup/spreadsheet-localization-parser/issues"
},
"author": "oleg.yasenytsky",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"google-auth-library": "^9.15.0",
"google-spreadsheet": "^4.1.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.0"
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}