-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
51 lines (51 loc) · 1.7 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
48
49
50
51
{
"private": true,
"name": "error-tracker",
"version": "1.0.0",
"description": "Receives error reports emitted by AMP HTML runtime library",
"author": "The AMP HTML Authors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ampproject/error-tracker"
},
"type": "module",
"scripts": {
"postinstall": "cd node_modules/safe-decode-uri-component && node-gyp rebuild",
"dev": "functions-framework --target=app",
"deploy-stable": "git tag 'deploy-stable-'`date -u '+%Y%m%d%H%M%S'` && git push [email protected]:ampproject/error-tracker --tags",
"deploy-dev": "gcloud functions deploy r-dev --set-env-vars COMMIT_SHA=$(git rev-parse HEAD)",
"lint": "eslint .",
"test": "mocha test/*.js test/**/*.js"
},
"dependencies": {
"@google-cloud/logging": "11.2.0",
"@google-cloud/storage": "7.13.0",
"@jridgewell/trace-mapping": "0.3.25",
"express": "4.21.0",
"http-status-codes": "2.3.0",
"lodash.debounce": "4.0.8",
"node-fetch": "3.3.2",
"safe-decode-uri-component": "1.2.2-native"
},
"devDependencies": {
"@google-cloud/functions-framework": "3.4.2",
"@types/express": "4.17.21",
"@types/lodash.debounce": "4.0.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "5.1.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-chai-expect": "3.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-prettier": "5.2.1",
"mocha": "10.7.3",
"nock": "13.5.5",
"prettier": "3.3.3",
"sinon": "18.0.1",
"source-map": "0.7.4",
"superagent": "9.0.2"
}
}