-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.49 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "salesforce-connector",
"version": "1.0.0",
"description": "RW API service that connects to SalesForce.",
"repository": "https://github.com/gfw-api/salesforce-connector",
"main": "index.js",
"license": "MIT",
"keywords": [
"salesforce",
"koa2",
"rw",
"nodejs",
"typescript"
],
"author": {
"name": "Vizzuality",
"email": "hello@vizzuality.com",
"url": "https://vizzuality.com/"
},
"engines": {
"node": "~20.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"*.test.*"
],
"include": [
"src/**"
],
"reporter": [
"text-summary",
"lcov"
],
"reportDir": "coverage",
"all": true
},
"scripts": {
"coverage": "nyc ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.ts' --exit",
"test": "ts-mocha -b --project tsconfig.json -r tsconfig-paths/register --timeout 20000 'test/**/*.ts' --exit",
"start": "ts-node --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"watch": "ts-node-dev --respawn --transpile-only --files --project tsconfig.json -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky install"
},
"dependencies": {
"bunyan": "^1.8.15",
"config": "^3.3.8",
"jsforce": "^2.0.0-beta.19",
"koa": "^2.14.1",
"koa-body": "5.0.0",
"koa-joi-router": "^8.0.0",
"koa-logger": "^3.2.1",
"koa-simple-healthcheck": "^0.0.1",
"rw-api-microservice-node": "^5.1.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/chai": "^4.3.4",
"@types/chai-http": "^4.2.0",
"@types/config": "^3.3.0",
"@types/koa": "^2.13.5",
"@types/koa-joi-router": "^8.0.4",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.12",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.28.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"sinon": "^15.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}