-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "@google-cloud/projectify",
"version": "4.0.0",
"description": "A simple utility for replacing the projectid token in objects.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "googleapis/nodejs-projectify",
"scripts": {
"test": "c8 mocha build/test",
"lint": "gts check",
"clean": "gts clean",
"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",
"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.9",
"c8": "^9.0.0",
"codecov": "^3.6.5",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
}
}