-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
65
{
"name": "@northern/cli",
"version": "1.0.2",
"description": "A lightweight CLI program framework.",
"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": {
"example": "tsx ./examples/basic/index.ts",
"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/cli.git"
},
"keywords": [
"console",
"terminal",
"cli",
"framework"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"author": "northern",
"license": "MIT",
"bugs": {
"url": "https://github.com/northern/cli/issues"
},
"homepage": "https://github.com/northern/cli#readme",
"devDependencies": {
"@types/jest": "^29",
"jest": "^29",
"ts-jest": "^29",
"tsx": "^4",
"typescript": "^5"
},
"dependencies": {
"@northern/console": "^1"
}
}