-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.28 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "env-version-log",
"version": "1.0.29",
"description": "A lightweight TypeScript package for tracking application versions and build numbers with environment awareness",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./utils": {
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs",
"types": "./dist/utils.d.ts",
"default": "./dist/utils.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm install && npm run lint && rollup -c",
"test": "jest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky",
"postinstall": "husky install",
"release": "npm version patch && npm publish"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"version",
"build",
"tracking",
"typescript",
"environment"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tarunbatta/env-version-log.git"
},
"bugs": {
"url": "https://github.com/tarunbatta/env-version-log/issues"
},
"homepage": "https://github.com/tarunbatta/env-version-log#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@jest/globals": "^30.0.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"jest": "^30.0.2",
"lint-staged": "^16.1.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.42.0",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.1.2",
"tslib": "^2.8.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"dependencies": {
"env-version-log": "^1.0.12"
}
}