forked from airtasker/spot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "spot-liangjihua",
"description": "fork from @airtasker/spot",
"version": "1.13.5",
"author": "Francois Wouts, Leslie Fung",
"bin": {
"spot": "./bin/run"
},
"bugs": "https://github.com/airtasker/spot/issues",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"assert-never": "^1.2.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^11.2.0",
"import-sync": "^2.2.2",
"inquirer": "^8.1.1",
"js-md5": "^0.8.3",
"js-yaml": "^4.1.0",
"qs": "^6.10.1",
"randomstring": "^1.2.1",
"ts-morph": "18.0.0",
"typescript": "^4.9.5",
"validator": "^13.6.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@stoplight/spectral": "^5.9.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.1.2",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node-fetch": "^2.6.11",
"@types/qs": "^6.9.11",
"@types/randomstring": "^1.1.11",
"@types/supertest": "^2.0.16",
"@types/validator": "^13.11.7",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^26.6.3",
"jest-junit": "^16.0.0",
"nock": "^13.5.0",
"prettier": "^3.2.2",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"bin",
"build",
"index.d.ts",
"index.js",
"npm-shrinkwrap.json",
"oclif.manifest.json"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://github.com/airtasker/spot",
"license": "MIT",
"oclif": {
"commands": "./build/cli/src/commands",
"bin": "spot",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "airtasker/spot",
"scripts": {
"build-docs": "cd docs && yarn build",
"build": "tsc",
"build:watch": "tsc --watch",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf build; tsc && oclif-dev manifest && yarn build-docs && oclif-dev readme",
"test": "jest -w 4",
"ci:test": "jest --config=jest.ci.config.js --ci -w 4",
"lint:check": "yarn prettier:check && yarn eslint:check",
"eslint:check": "eslint . --ext .js,.ts,.tsx",
"prettier:check": "prettier --list-different \"**/*.js\" \"**/*.ts\" \"**/*.tsx\"",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"eslint:fix": "eslint . --fix --ext .js,.ts,.tsx",
"prettier:fix": "prettier --write \"**/*.js\" \"**/*.ts\" \"**/*.tsx\""
}
}