-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "projectmanager-sdk",
"version": "122.0.214",
"description": "Software development kit for the ProjectManager.com API. for TypeScript",
"repository": "https://github.com/projectmgr/projectmanager-sdk-typescript",
"license": "MIT",
"author": "ProjectManager.com [email protected] ()",
"keywords": [
"projectmanager project management task tracking projects tasks"
],
"homepage": "",
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"dist/**/*"
],
"scripts": {
"clear": "rimraf ./dist && rimraf *.tgz && rimraf ./bundle",
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.ts\"",
"build": "node ./build/build.js",
"build-types": "tsc --emitDeclarationOnly --declaration --project tsconfig.bundle.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"platform": "node",
"devDependencies": {
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"esbuild": "^0.19.4",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "^8.11.0",
"npm-run-all": "^2.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
}
}