-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 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
59
60
61
62
{
"name": "@pnpm/logger",
"version": "5.1.0",
"description": "Logger for pnpm",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"test": "tslint -c tslint.json --project . && preview && ts-node test --type-check",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/logger.git"
},
"engines": {
"node": ">=12.17"
},
"keywords": [
"pnpm",
"logger"
],
"author": {
"name": "Zoltan Kochan",
"email": "[email protected]",
"url": "https://www.kochan.io/",
"twitter": "ZoltanKochan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/logger/issues"
},
"homepage": "https://github.com/pnpm/logger#readme",
"dependencies": {
"bole": "^5.0.0",
"ndjson": "^2.0.0"
},
"devDependencies": {
"@types/node": "^18.8.5",
"@types/tape": "^4.13.2",
"mos": "^2.0.0-alpha.3",
"mos-plugin-readme": "^1.0.4",
"package-preview": "^4.0.0",
"rimraf": "^3.0.2",
"tape": "^5.6.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
}
}