-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
74 lines (74 loc) · 1.63 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
{
"name": "fbi",
"description": "A workflow tool in the command line",
"version": "4.4.1",
"author": "shaw @neikvon",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"fbi": "bin/run"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rm -rf lib && tsc",
"watch": "npm run build && tsc --watch",
"lint": "eslint --ext ts src",
"clean": "rm -rf lib && rm -rf node_modules",
"format": "prettier --write \"src/**/*.{ts,js,json}\" && eslint --ext ts src --fix"
},
"keywords": [
"fbi",
"tool",
"workflow",
"development",
"command line",
"node.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fbi-js/fbi.git"
},
"homepage": "https://github.com/fbi-js/fbi",
"bugs": {
"url": "https://github.com/fbi-js/fbi/issues"
},
"dependencies": {
"@types/fs-extra": "^9.0.5",
"chalk": "^4.1.0",
"clean-stack": "^3.0.1",
"commander": "6.2.1",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"ora": "^5.2.0",
"pkg-dir": "^5.0.0",
"semver": "^7.3.4",
"tiny-glob": "^0.2.8"
},
"devDependencies": {
"@fbi-js/eslint-config-typescript": "^1.2.0",
"@fbi-js/tsconfig": "^1.2.0",
"@types/node": "*",
"@types/semver": "^7",
"eslint": "^7",
"prettier": "^2.2.1",
"typescript": "^4"
},
"eslintConfig": {
"extends": [
"@fbi-js/typescript"
]
},
"prettier": {
"semi": false,
"tabWidth": 2,
"endOfLine": "lf",
"printWidth": 80,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "always"
}
}