-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "cloud-function-packaging-example",
"version": "1.0.0",
"description": "Stackchat cloud function example",
"main": "cloud-functions.js",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"dependencies": {
"@stackchat/dynamic-content-toolkit": "0.0.9",
"request-promise": "4.2.5"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/node": "12.12.37",
"@types/request-promise": "4.1.46",
"@typescript-eslint/eslint-plugin": "3.0.1",
"@typescript-eslint/parser": "3.0.1",
"eslint": "^7.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-security": "^1.4.0",
"jest": "26.0.1",
"ts-jest": "26.0.0",
"ts-loader": "7.0.5",
"typescript": "3.9.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"scripts": {
"build": "webpack",
"clean": "rm -rf build dist",
"lint": "eslint --quiet --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "npm run lint --fix",
"test": "npm run lint && jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.spec.(js|ts)"
]
}
}