This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "@inyono/copyright-headers",
"version": "0.2.0",
"homepage": "https://github.com/inyono/changelog",
"bugs": {
"url": "https://github.com/inyono/changelog/issues"
},
"repository": "inyono/copyright-headers",
"license": "MIT",
"author": "Jonas Keinholz <[email protected]>",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"_prettier": "prettier .",
"build": "rimraf dist && tsup src/index.ts --dts --format esm",
"changelog": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/changelog",
"format": "yarn _prettier --write",
"license": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/license-headers",
"lint": "npm-run-all --parallel lint:prettier lint:tsc",
"lint:prettier": "yarn _prettier --check",
"lint:tsc": "tsc --noEmit",
"test": "node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"ramda": "^0.28.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@inyono/changelog": "^0.5.2",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^14.18.12",
"@types/ramda": "^0.28.1",
"@types/signale": "^1.4.4",
"glob": "^7.2.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.16",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tsup": "^5.12.0",
"typescript": "^4.6.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}