-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "@ayogohealth/get_copy",
"version": "1.0.0",
"description": "Turn a Google spreadsheet of translation strings into a JSON file",
"main": "index.js",
"exports": "index.js",
"bin": {
"get_copy": "get_copy_cli.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "npm run build && node --no-warnings --loader=esmock --test test/*.js"
},
"author": "Ayogo Health Inc. <[email protected]>",
"contributors": [
"Adam Vernon <[email protected]>",
"Darryl Pogue <[email protected]>",
"Euan Forrester",
"Ian Suda <[email protected]>",
"Jailson Brito",
"Sara Tan"
],
"license": "MIT",
"engines": {
"node": ">= 16.17.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AyogoHealth/get_copy.git"
},
"bugs": {
"url": "https://github.com/AyogoHealth/get_copy/issues"
},
"files": [
"*.js"
],
"dependencies": {
"open": "^9.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esmock": "^2.0.4",
"typescript": "^5.0.0"
}
}