forked from oclif/test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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": "@oclif/test",
"description": "test helpers for oclif components",
"version": "2.2.12",
"author": "Salesforce",
"bugs": "https://github.com/oclif/test/issues",
"dependencies": {
"@oclif/core": "^1.20.4",
"fancy-test": "^2.0.7"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.33",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"globby": "^11.0.1",
"mocha": "^9",
"nock": "^13.0.1",
"shx": "^0.3.3",
"ts-node": "^9.0.0",
"typescript": "4.6.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/oclif/test",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "oclif/test",
"scripts": {
"build": "shx rm -rf lib && tsc",
"lint": "eslint . --ext .ts --config .eslintrc",
"posttest": "yarn lint",
"prepublishOnly": "yarn run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"pretest": "yarn build --noEmit && tsc -p test --noEmit"
},
"types": "lib/index.d.ts"
}