forked from googleapis/google-cloudevents-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "@google/events",
"version": "5.4.0",
"description": "Client library for CloudEvents issued by Google.",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"pretest": "npm run compile",
"test": "mocha -r ts-node/register 'tests/index.ts'",
"check": "gts check",
"clean": "gts clean",
"docs": "node tools/docs.js",
"build": "tsc --skipLibCheck",
"watch": "tsc --watch --skipLibCheck",
"gen": "./tools/gen.sh && node tools/postgen.js",
"lint": "gts lint",
"compile": "tsc",
"fix": "gts fix"
},
"repository": "googleapis/google-cloudevents-nodejs",
"author": "Google Inc.",
"keywords": [
"google",
"events",
"cloudevents"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googleapis/google-cloudevents-nodejs/issues"
},
"homepage": "https://github.com/googleapis/google-cloudevents-nodejs#readme",
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"chai": "^4.2.0",
"gts": "^3.1.0",
"mocha": "^10.0.0",
"node-fetch": "^3.0.0",
"quicktype-core": "^23.0.0",
"recursive-readdir": "^2.2.2",
"ts-node": "^10.0.0",
"typescript": "^4.6.4"
}
}