-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "typescriptfunction-function",
"version": "0.0.1",
"type": "module",
"author": "",
"description": "",
"license": "UNLICENSED",
"main": "dist/index.js",
"repository": {
"type": "git"
},
"engines": {
"node": "^16.19.1"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --config .eslintrc",
"test": "mocha",
"watch": "tsc -w"
},
"dependencies": {
"@heroku/sf-fx-runtime-nodejs": "^0.14.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.9",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.4",
"eslint": "^8.23.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}