-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.41 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
{
"name": "@sourcegraph/create",
"version": "0.0.0-DEVELOPMENT",
"description": "CLI to bootstrap Sourcegraph npm packages",
"engines": {
"node": "^14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcegraph/create.git"
},
"files": [
"dist"
],
"bin": {
"create-sourcegraph": "dist/cli.js"
},
"keywords": [
"cli",
"npm",
"create",
"generate",
"generator",
"bootstrap",
"boilerplate"
],
"license": "Apache-2.0",
"scripts": {
"eslint": "eslint 'src/**/*.ts'",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"package-schema": "download http://json.schemastore.org/package | json2ts | prettier --parser typescript > src/package-schema.ts",
"tsconfig-schema": "download http://json.schemastore.org/tsconfig | json2ts | prettier --parser typescript > src/tsconfig-schema.ts",
"eslintrc-schema": "download http://json.schemastore.org/eslintrc | json2ts | prettier --parser typescript > src/eslintrc-schema.ts",
"renovate-schema": "download http://json.schemastore.org/renovate | json2ts | prettier --parser typescript > src/renovate-schema.ts",
"prettier": "prettier '**/{*.{js?(on),ts?(x),scss},.*.js?(on)}' --write --list-different",
"prettier-check": "npm run prettier -- --write=false",
"semantic-release": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"chalk": "^3.0.0",
"delay": "^4.3.0",
"execa": "^4.0.2",
"got": "^10.7.0",
"inquirer": "^7.1.0",
"js-yaml": "^3.14.0",
"mkdirp-promise": "^5.0.1",
"mz": "^2.7.0",
"npm-registry-client": "^8.6.0",
"tweetsodium": "^0.0.5"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@sourcegraph/eslint-config": "^0.23.0",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/execa": "2.0.0",
"@types/inquirer": "8.2.10",
"@types/js-yaml": "3.12.5",
"@types/mkdirp-promise": "5.0.0",
"@types/mz": "2.7.8",
"@types/node": "12.20.55",
"download-cli": "^1.1.1",
"eslint": "^7.32.0",
"husky": "^4.2.3",
"json-schema-to-typescript": "^10.1.2",
"prettier": "^2.2.1",
"semantic-release": "^17.0.6",
"typescript": "^4.1.3"
}
}