-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "mondayapi",
"version": "1.2.1",
"description": "Wrap the https monday API. It allows to have typed responses and provide correct parameters.",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"./dist/**"
],
"scripts": {
"build": "tsc",
"start": "node ./dist/",
"dev": "npm run build && npm run start",
"test": "node --test ./dist/__tests__/"
},
"repository": {
"type": "git",
"url": "https://github.com/Andy-d-g/mondayapi"
},
"homepage": "https://github.com/Andy-d-g/mondayapi#readme",
"bugs": {
"url": "https://github.com/Andy-d-g/mondayapi/issues",
"email": "andy.guillaume75@gmail.com"
},
"keywords": [
"monday",
"nodejs",
"api",
"helper",
"typescript"
],
"author": {
"name": "Andy GUILLAUME",
"email": "andy.guillaume75@gmail.com",
"url": "https://ipreze.com"
},
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20.2.5",
"typescript": "^5.0.4"
}
}