-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "space-log",
"description": "A utility for logging tabular data to the terminal.",
"repository": {
"type": "git",
"url": "git+https://github.com/01taylop/space-log.git"
},
"version": "1.2.0",
"type": "module",
"main": "./lib/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"build:cjs": "babel src -d lib --env-name cjs --out-file-extension .cjs",
"build:esm": "babel src -d lib --env-name esm --out-file-extension .js",
"build": "rimraf lib && yarn run build:cjs && yarn run build:esm",
"prepublishOnly": "yarn test --coverage && yarn build && yarn test:bundles",
"test": "jest",
"test:bundles": "jest --config ./jest/cjs.config.js && jest --config ./jest/esm.config.js"
},
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@babel/cli": "7.24.6",
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"jest": "29.7.0",
"rimraf": "5.0.7"
},
"author": "Patrick Taylor <[email protected]>",
"keywords": [
"console",
"log",
"space",
"spaced",
"table",
"tabular"
]
}