-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.46 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "zen-audit",
"description": "A tool to gather everything you need to deploy a new project",
"version": "0.9.0",
"author": "Zenika - Demey Emmanuel - Lafrance Antoine",
"bin": {
"project-starter-cli": "./bin/run"
},
"bugs": "https://github.com/DX-DeveloperExperience/project-starter/issues",
"dependencies": {
"@oclif/command": "1.5.11",
"@oclif/config": "1.12.9",
"@oclif/dev-cli": "1.22.0",
"@oclif/plugin-help": "2.1.6",
"@oclif/tslint": "3.1.1",
"@types/mustache": "0.8.32",
"axios": "0.19.0",
"check-node-version": "3.3.0",
"fs-extra": "8.0.1",
"inquirer": "6.2.2",
"mdpdf": "2.0.4",
"mustache": "3.0.1",
"request": "2.88.0",
"rxjs": "6.5.2",
"sync-request": "6.1.0",
"tslib": "1.9.3",
"typescript": "3.3.3333",
"winston": "3.2.1"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/fs-extra": "7.0.0",
"@types/inquirer": "6.0.3",
"@types/jest": "24.0.9",
"@types/mock-fs": "3.6.30",
"@types/node": "10.12.29",
"@types/rx": "4.1.1",
"@types/winston": "2.4.4",
"copyfiles": "2.1.1",
"coveralls": "3.0.3",
"globby": "8.0.2",
"husky": "1.3.1",
"jest": "24.1.0",
"mock-fs": "4.8.0",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"prettier": "1.17.1",
"proxyquire": "2.1.0",
"sass-loader": "7.3.1",
"ts-jest": "24.0.0",
"ts-node": "8.0.2",
"tslint": "5.13.1",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.15.0",
"typedoc-plugin-markdown": "2.1.3",
"vuepress": "1.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/DX-DeveloperExperience/project-starter",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "project-starter-cli"
},
"repository": "DX-DeveloperExperience/project-starter",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme && npm run copy-static-files",
"copy-static-files": "find src -not -name '*.ts' -type f -exec copyfiles -u 1 {} lib/ \\;",
"test": "jest --runInBand",
"test:cov": "jest --coverage --runInBand",
"jest-cache": "jest --clearCache --detectOpenHandles ",
"audit": "npm audit",
"oclif-pack": "oclif-dev pack",
"prettier-test": "prettier -c \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"ci": "npm-run-all audit jest-cache prettier-test test",
"version": "oclif-dev readme && git add README.md",
"publish-npm": "npm publish --access public",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"typedoc": "typedoc src --mode modules --json docs/API/api.json --options typedoc.js"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/.*/__mocks__"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "preserve"
},
"husky": {
"hooks": {
"pre-push": "npm run ci"
}
}
}