-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
52
{
"name": "@google-cloud/promisify",
"version": "4.0.0",
"description": "A simple utility for promisifying functions and classes.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "googleapis/nodejs-promisify",
"scripts": {
"test": "c8 mocha build/test",
"lint": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"docs": "jsdoc -c .jsdoc.js",
"presystem-test": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha build/system-test",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"clean": "gts clean",
"precompile": "gts clean"
},
"keywords": [],
"files": [
"build/src",
"!build/src/**/*.map"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.8",
"@types/sinon": "^17.0.0",
"c8": "^9.0.0",
"chai": "^4.2.0",
"codecov": "^3.0.4",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"hard-rejection": "^2.1.0",
"linkinator": "^3.0.1",
"mocha": "^8.0.0",
"sinon": "^17.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14"
}
}