-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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": "autobin",
"version": "1.1.1",
"description": "Prepare bin scripts for publishing.",
"license": "MIT",
"private": false,
"author": "Connor White",
"repository": {
"type": "git",
"url": "git+https://github.com/AutosseyAI/autobin.git"
},
"bugs": {
"url": "https://github.com/AutosseyAI/autobin/issues"
},
"keywords": [
"bin",
"hashbang",
"node",
"shebang",
"auto"
],
"type": "module",
"main": ".auto/build/index.js",
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.ts",
"bin": {
"autobin": ".auto/build/bin/index.js"
},
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"scripts": {
"build": "tsc --project ./tsconfig.json --incremental",
"dev": "node --loader ts-node/esm ./source/bin/index.ts",
"lint": "eslint source --ext .ts && npmPkgJsonLint .",
"postbuild": "yarn dev",
"prepack": "yarn build",
"release": "yarn version && git push && git push --tags"
},
"dependencies": {
"clee": "^0.2.9",
"file-structure": "^1.6.2",
"make-executable": "^2.0.2",
"read-file-safe": "^2.1.1",
"write-file-safe": "^2.0.3"
},
"devDependencies": {
"@autossey/eslint-config": "^0.1.0",
"@autossey/tsconfig": "^1.1.0",
"ts-node": "^10.9.1"
},
"eslintConfig": {
"extends": "@autossey/eslint-config"
}
}