-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 KB
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
{
"name": "@northern/console",
"version": "1.0.5",
"description": "A lightweight TypeScript console wrapper with support for color tags and quiet mode.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/**/*"
],
"sideEffects": false,
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types && npm run build:cjs-package",
"build:esm": "tsc --project tsconfig.esm.json --removeComments",
"build:cjs": "tsc --project tsconfig.cjs.json --removeComments",
"build:types": "tsc --project tsconfig.types.json --removeComments",
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json",
"test": "jest",
"test:watch": "jest --watch --no-coverage",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northern/console.git"
},
"keywords": [
"console",
"terminal",
"cli",
"colors"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"author": "northern",
"license": "MIT",
"bugs": {
"url": "https://github.com/northern/console/issues"
},
"homepage": "https://github.com/northern/console#readme",
"devDependencies": {
"@types/jest": "^29",
"@types/uuid": "^9",
"jest": "^29",
"ts-jest": "^29",
"typescript": "^5"
},
"dependencies": {
"chalk": "^4.1.2"
}
}