|
21 | 21 | "engines": { |
22 | 22 | "node": ">=8.10.0" |
23 | 23 | }, |
| 24 | + "files": [ |
| 25 | + "build/src" |
| 26 | + ], |
| 27 | + "scripts": { |
| 28 | + "prepare": "npm run compile", |
| 29 | + "presamples-test": "npm run compile", |
| 30 | + "samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../", |
| 31 | + "presystem-test": "npm run compile", |
| 32 | + "system-test": "mocha build/system-test", |
| 33 | + "test-no-cover": "cross-env CLOUD_DEBUG_ASSERTIONS=1 mocha build/test --require source-map-support/register --timeout 4000 --R spec", |
| 34 | + "test": "nyc npm run test-no-cover && nyc report", |
| 35 | + "check": "gts check", |
| 36 | + "clean": "gts clean", |
| 37 | + "precompile": "npm run compile-scripts && node build/scripts/setup-build-dir.js", |
| 38 | + "compile": "tsc -p .", |
| 39 | + "compile-scripts": "tsc -p scripts-tsconfig.json", |
| 40 | + "fix": "gts fix", |
| 41 | + "pretest": "npm run compile", |
| 42 | + "posttest": "npm run check && npm run license-check", |
| 43 | + "prepack": "npm run compile", |
| 44 | + "license-check": "jsgl --local .", |
| 45 | + "lint": "npm run check", |
| 46 | + "docs": "compodoc src/", |
| 47 | + "docs-test": "linkinator docs -r --skip www.googleapis.com", |
| 48 | + "predocs-test": "npm run docs" |
| 49 | + }, |
| 50 | + "dependencies": { |
| 51 | + "@google-cloud/common": "^1.0.0", |
| 52 | + "@sindresorhus/is": "^0.17.1", |
| 53 | + "acorn": "^6.0.0", |
| 54 | + "coffeescript": "^2.0.0", |
| 55 | + "console-log-level": "^1.4.0", |
| 56 | + "extend": "^3.0.1", |
| 57 | + "findit2": "^2.2.3", |
| 58 | + "gcp-metadata": "^2.0.0", |
| 59 | + "lodash.pickby": "^4.6.0", |
| 60 | + "p-limit": "^2.2.0", |
| 61 | + "semver": "^6.0.0", |
| 62 | + "source-map": "^0.6.1", |
| 63 | + "split": "^1.0.0" |
| 64 | + }, |
24 | 65 | "devDependencies": { |
25 | 66 | "@compodoc/compodoc": "^1.1.7", |
26 | 67 | "@types/acorn": "^4.0.2", |
|
44 | 85 | "js-green-licenses": "^1.0.0", |
45 | 86 | "linkinator": "^1.1.2", |
46 | 87 | "mkdirp": "^0.5.1", |
47 | | - "mocha": "^6.0.0", |
| 88 | + "mocha": "^6.1.4", |
48 | 89 | "ncp": "^2.0.0", |
49 | 90 | "nock": "^10.0.0", |
50 | 91 | "nyc": "^14.0.0", |
|
55 | 96 | "teeny-request": "^3.11.3", |
56 | 97 | "typescript": "~3.5.0", |
57 | 98 | "uuid": "^3.3.2" |
58 | | - }, |
59 | | - "dependencies": { |
60 | | - "@google-cloud/common": "^1.0.0", |
61 | | - "@sindresorhus/is": "^0.17.1", |
62 | | - "acorn": "^6.0.0", |
63 | | - "coffeescript": "^2.0.0", |
64 | | - "console-log-level": "^1.4.0", |
65 | | - "extend": "^3.0.1", |
66 | | - "findit2": "^2.2.3", |
67 | | - "gcp-metadata": "^2.0.0", |
68 | | - "lodash.pickby": "^4.6.0", |
69 | | - "p-limit": "^2.2.0", |
70 | | - "semver": "^6.0.0", |
71 | | - "source-map": "^0.6.1", |
72 | | - "split": "^1.0.0" |
73 | | - }, |
74 | | - "scripts": { |
75 | | - "prepare": "npm run compile", |
76 | | - "presamples-test": "npm run compile", |
77 | | - "samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../", |
78 | | - "presystem-test": "npm run compile", |
79 | | - "system-test": "mocha build/system-test", |
80 | | - "test-no-cover": "cross-env CLOUD_DEBUG_ASSERTIONS=1 mocha build/test --require source-map-support/register --timeout 4000 --R spec", |
81 | | - "test": "nyc npm run test-no-cover && nyc report", |
82 | | - "check": "gts check", |
83 | | - "clean": "gts clean", |
84 | | - "precompile": "npm run compile-scripts && node build/scripts/setup-build-dir.js", |
85 | | - "compile": "tsc -p .", |
86 | | - "compile-scripts": "tsc -p scripts-tsconfig.json", |
87 | | - "fix": "gts fix", |
88 | | - "pretest": "npm run compile", |
89 | | - "posttest": "npm run check && npm run license-check", |
90 | | - "prepack": "npm run compile", |
91 | | - "license-check": "jsgl --local .", |
92 | | - "lint": "npm run check", |
93 | | - "docs": "compodoc src/", |
94 | | - "docs-test": "linkinator docs -r --skip www.googleapis.com", |
95 | | - "predocs-test": "npm run docs" |
96 | | - }, |
97 | | - "files": [ |
98 | | - "CHANGELOG.md", |
99 | | - "LICENSE", |
100 | | - "README.md", |
101 | | - "build/src" |
102 | | - ] |
| 99 | + } |
103 | 100 | } |
0 commit comments