-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.44 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
{
"name": "create-testplane",
"version": "2.2.0",
"description": "A tool for fast and simple Testplane configuration",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"bin": {
"create-testplane": "./build/bin/create-testplane.js"
},
"scripts": {
"build": "tsc",
"build-spec": "tsc --build tsconfig.spec.json",
"clean": "rimraf build/ build-spec/ *.tsbuildinfo",
"prepack": "npm run clean && npm run build",
"test": "npm run lint && npm run unit",
"lint": "npm run eslint && npm run style",
"reformat": "eslint src --ext .ts --fix && prettier --write 'src/**/*.ts' '**/*.json'",
"style": "prettier --check 'src/**/*.ts' '**/*.json'",
"eslint": "eslint src --ext .ts",
"unit": "jest",
"dev": "ts-node --compilerOptions {\"noUnusedLocals\":false,\"noUnusedParameters\":false} src/bin/create-testplane.ts .",
"commitmsg": "commitlint -e"
},
"repository": {
"type": "git",
"url": "git://github.com/gemini-testing/create-testplane.git"
},
"keywords": [
"testplane",
"hermione",
"build-tools"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/create-testplane/issues"
},
"homepage": "https://github.com/gemini-testing/create-testplane#readme",
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@tsconfig/recommended": "^1.0.1",
"@types/inquirer": "^9.0.1",
"@types/jest": "^29.5.11",
"@types/jest-when": "^3.5.5",
"@types/lodash": "^4.14.185",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-gemini-testing": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-when": "^3.6.0",
"prettier": "^2.7.1",
"testplane": "^0.1.0-rc.0",
"ts-jest": "^29.1.1",
"typescript": "^4.4.4"
},
"dependencies": {
"inquirer": "^8.2.4",
"lodash": "^4.17.21",
"ora": "^4.1.1",
"yargs": "^17.5.1"
},
"engines": {
"node": ">=12.0.0"
}
}