-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "blarn",
"description": "A Yarn wrapper with extra functionality",
"version": "1.2.0",
"author": "Ian Sutherland <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iansu/blarn"
},
"engines": {
"node": ">=12.0.0"
},
"bin": {
"blarn": "bin/blarn.js"
},
"scripts": {
"start": "bin/blarn.js",
"build": "NODE_ENV=production ncc build src/app.ts -o build --minify",
"watch": "NODE_ENV=production ncc build src/app.ts -o build --minify --watch",
"clean": "rimraf build",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
"format:check": "prettier --debug-check \"**/*.{ts,js,json,yaml,yml,md}\"",
"precommit": "lint-staged",
"prepublishOnly": "rimraf build && ncc build src/app.ts -o build --minify",
"prepare": "husky install"
},
"files": [
"bin",
"build"
],
"keywords": [
"yarn",
"npm",
"typescript",
"cli",
"package manager"
],
"lint-staged": {
"*.{ts,js}": [
"eslint"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"update-notifier": "5.1.0"
},
"devDependencies": {
"@types/find-package-json": "1.2.2",
"@types/node": "16.11.6",
"@types/pacote": "11.1.1",
"@types/update-notifier": "5.1.0",
"@zeit/ncc": "0.22.3",
"chalk": "4.1.2",
"eslint": "7.32.0",
"eslint-config-neo": "0.5.2",
"execa": "5.1.1",
"find-package-json": "1.2.0",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"pacote": "11.1.4",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"yarn-config-directory": "1.0.2"
}
}