-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "autorepo",
"version": "0.1.11",
"description": "Autorepo abstracts away your dev dependencies, providing a single command to run all of your scripts.",
"license": "MIT",
"private": false,
"author": "Connor White",
"contributors": [
"Connor White"
],
"homepage": "https://github.com/autosoftoss/autorepo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/autosoftoss/autorepo.git"
},
"bugs": "https://github.com/autosoftoss/autorepo/issues",
"keywords": [
"auto",
"repo"
],
"type": "module",
"main": ".auto/build/index.js",
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.ts",
"bin": {
"auto": ".auto/build/index.js",
"autorepo": ".auto/build/index.js"
},
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "tsc --project ./tsconfig.json --incremental",
"dev": "node --no-warnings --loader ts-node/esm ./source/index.ts",
"lint": "eslint source --ext .ts && npmPkgJsonLint .",
"postbuild": "autobin",
"prepack": "yarn build",
"release": "yarn build && yarn dev release"
},
"dependencies": {
"@autosoft/autorepo-api": "^0.2.15"
},
"eslintConfig": {
"extends": "@autosoft/eslint-config"
},
"jest": {
"preset": "@autosoft/jest-preset"
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-auto"
}
}