-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
51
{
"name": "deepsource-node",
"version": "0.1.5",
"description": "A JavaScript wrapper around the DeepSource API",
"repository": {
"type": "git",
"url": "https://github.com/srijanpaul-deepsource/deepsource-node"
},
"source": "src/index.ts",
"main": "dist/index.js",
"author": "Srijan Paul",
"license": "MIT",
"private": false,
"types": "dist/index.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"targets": {
"browser": {
"source": "src/index.ts",
"context": "browser",
"includeNodeModules": true,
"outputFormat": "esmodule"
},
"node": {
"source": "src/index.ts",
"context": "node",
"engines": {
"node": ">= 14"
}
}
},
"dependencies": {
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"node-fetch": "2.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/graphql": "^14.5.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"parcel": "^2.8.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
}
}