This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.69 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
{
"name": "@superfaceai/cli",
"version": "4.1.3",
"description": "Superface CLI utility",
"main": "dist/index.js",
"repository": "https://github.com/superfaceai/cli.git",
"author": "Superface Team",
"private": false,
"bin": {
"superface": "bin/superface",
"sf": "bin/superface"
},
"files": [
"bin/",
"dist/"
],
"scripts": {
"postinstall": "echo \"Thanks for checking out Superface.ai!\nFor help, run: superface --help\nDocumentation: https://sfc.is/docs\nQuestions or feedback: https://sfc.is/discussions\n\"",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.release.json --outDir dist",
"test": "yarn test:fast && yarn test:integration",
"test:clean": "jest --clear-cache && jest",
"lint": "eslint src/",
"lint:fix": "yarn lint --fix",
"format": "prettier -c src/",
"format:fix": "prettier --write src/",
"prepush": "yarn build && yarn test && yarn lint && yarn format",
"test:fast": "jest",
"test:integration": "jest --config=jest.config.integration.js",
"fixtures:recompile": "node ./dist/test/compile-fixtures.js"
},
"devDependencies": {
"@types/concat-stream": "^1.6.0",
"@types/debug": "^4.1.5",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.8",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"concat-stream": "^2.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "27.1.0",
"mockttp": "^3.6.0",
"prettier": "^2.3.2",
"ts-jest": "27.0.5"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@superfaceai/ast": "^1.3.0",
"@superfaceai/parser": "^2.1.0",
"@superfaceai/service-client": "5.2.1",
"chalk": "^4.1.0",
"cross-fetch": "^3.1.4",
"debug": "^4.3.1",
"handlebars": "^4.7.7",
"inquirer": "^7.3.3",
"nanospinner": "^1.1.0",
"netrc-parser": "^3.1.6",
"open": "^8.2.1",
"rimraf": "^3.0.2",
"typescript": "4.3.4"
},
"oclif": {
"commands": "dist/commands",
"bin": "superface",
"plugins": [
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
}
}
}