-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "create-sourcegraph-extension",
"version": "0.0.0-DEVELOPMENT",
"description": "CLI to generate the skeleton for a Sourcegraph extension",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/create-extension.git"
},
"files": [
"dist"
],
"bin": {
"create-sourcegraph-extension": "./dist/cli.js"
},
"keywords": [
"cli",
"npm",
"create",
"generate",
"generator",
"bootstrap",
"boilerplate"
],
"license": "Apache-2.0",
"scripts": {
"eslint": "eslint 'src/**/*.ts'",
"build": "tsc -p .",
"package-schema": "download http://json.schemastore.org/package | json2ts | prettier --parser typescript > src/package-schema.ts",
"travis-schema": "download http://json.schemastore.org/travis | json2ts | prettier --parser typescript > src/travis-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",
"prettier": "prettier '**/*.{js?(on),ts}' --write --list-different",
"semantic-release": "semantic-release",
"pre-commit": "yarn run eslint && yarn run prettier"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"chalk": "2.4.1",
"execa": "1.0.0",
"git-url-parse": "^11.1.1",
"inquirer": "6.2.1",
"js-yaml": "3.14.0",
"mz": "2.7.0",
"npm-registry-client": "8.6.0",
"source-map-support": "0.5.9"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@sourcegraph/eslint-config": "^0.17.2",
"@sourcegraph/prettierrc": "3.0.3",
"@sourcegraph/tsconfig": "4.0.1",
"@types/execa": "0.9.0",
"@types/git-url-parse": "9.0.0",
"@types/inquirer": "0.0.44",
"@types/js-yaml": "3.12.5",
"@types/mz": "2.7.3",
"download-cli": "^1.1.1",
"eslint": "^7.28.0",
"husky": "6.0.0",
"json-schema-to-typescript": "8.2.0",
"prettier": "2.3.0",
"semantic-release": "15.12.5",
"typescript": "3.9.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}