-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"name": "create-autorepo",
"version": "0.1.7",
"description": "Start a new project with autorepo",
"license": "MIT",
"private": false,
"author": "Connor White",
"contributors": [
"Connor White"
],
"homepage": "https://github.com/autosoftoss/create-autorepo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/autosoftoss/create-autorepo.git"
},
"bugs": "https://github.com/autosoftoss/create-autorepo/issues",
"keywords": [
"create",
"autorepo",
"auto",
"autosoft",
"start",
"project",
"repo"
],
"type": "module",
"main": ".auto/build/index.js",
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.js",
"bin": {
"create-autorepo": ".auto/build/index.js"
},
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"scripts": {
"build": "auto build",
"lint": "auto lint",
"prepack": "yarn build",
"release": "auto release"
},
"dependencies": {
"@autosoft/autorepo-api": "^0.2.12",
"enquirer": "^2.3.6"
},
"devDependencies": {
"autorepo": "^0.1.8"
},
"eslintConfig": {
"extends": "@autosoft/eslint-config"
},
"jest": {
"preset": "@autosoft/jest-preset"
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-auto"
}
}