-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "@datatrue/api",
"version": "0.2.3",
"description": "An API wrapper for the DataTrue APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist docs",
"docs": "typedoc src/index.ts",
"lint": "eslint --max-warnings 0 \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublish:gas": "npm run build:gas",
"publish:gas": "clasp push && clasp version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datatrue-analytics/datatrue-api-typescript.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/datatrue-analytics/datatrue-api-typescript/issues"
},
"homepage": "https://datatrue-analytics.github.io/datatrue-api-typescript/",
"devDependencies": {
"@google/clasp": "^2.3.0",
"@types/google-apps-script": "^2.0.0",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-plugin-jsdoc": "^62.0.0",
"typedoc": "^0.28.0",
"typescript": "^5.0.2"
},
"dependencies": {
"cross-fetch": "^4.0.0"
}
}