-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
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
{
"name": "ts2gas",
"version": "4.2.0",
"description": "A function that transpiles TypeScript to Google Apps Script.",
"type": "module",
"files": [
"src"
],
"exports": "./src/index.js",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"license": "MIT",
"author": "Grant Timmerman",
"repository": {
"type": "git",
"url": "git+https://github.com/grant/ts2gas.git"
},
"bugs": {
"url": "https://github.com/grant/ts2gas/issues"
},
"homepage": "https://github.com/grant/ts2gas#readme",
"scripts": {
"build": "tsc --project tsconfig.json",
"dryrun": "npm publish --dry-run",
"lint": "xo && echo 'No lint errors. All good!'",
"test": "node tests/test.js"
},
"dependencies": {
"type-fest": "^2.1.0",
"typescript": "^4.4.2"
},
"devDependencies": {
"@types/node": "^18.0.0",
"prettier": "^2.3.2",
"xo": "^0.44.0"
},
"xo": {
"ignores": [
"**.js"
],
"space": 2,
"rules": {
"unicorn/prefer-node-protocol": "warn"
},
"prettier": true
}
}