-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@gfour/logts",
"version": "1.0.1",
"description": "An implementation of MicroLogger inside of Typescript",
"main": "out/esm/main.js",
"repository": "https://gitlab.com/gfour/logts.git",
"author": {
"name": "The G4 Development Team"
},
"contributors": [
{
"name": "Quinn Lane",
"email": "[email protected]"
}
],
"bugs": {
"email": "[email protected]",
"url": "https://gitlab.com/gfour/logts/-/issues"
},
"license": "BSD-3-Clause",
"type": "module",
"publishConfig": {
"@gfour:registry": "https://gitlab.com/api/v4/projects/33359583/packages/npm/"
},
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"concurrently": "^7.0.0",
"prettier": "^2.5.1",
"prettier-config-standard": "^4.0.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "concurrently --names \"Build ESM,Build CJS\" --prefix-colors \"yellow,blue\" \"tsc --outDir out/esm/ --module esnext\" \"tsc --outDir out/cjs/ --module commonjs\"",
"test": "yarn node ."
},
"packageManager": "[email protected]",
"types": "./typings/main.d.ts",
"prettier": "prettier-config-standard"
}