-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.46 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.46 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
{
"name": "gen-unit",
"version": "0.2.1",
"description": "A generic unit parser/formatter generator",
"keywords": [
"generic",
"unit",
"units",
"parse",
"parser",
"format",
"formatter"
],
"type": "commonjs",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/gen-unit.mjs",
"require": "./dist/commonjs/index.cjs",
"default": "./dist/commonjs/index.cjs"
},
"main": "./dist/commonjs/index.cjs",
"module": "./dist/esm/gen-unit.mjs",
"jsnext:main": "./dist/esm/gen-unit.mjs",
"browser": "./dist/umd/gen-unit.umd.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean:cache": "rimraf --glob node_modules/.cache/{bundlib,jest}",
"clean:build": "rimraf dist coverage",
"clean": "run-p clean:*",
"ts-check": "tsc -b",
"lint": "eslint",
"lint:test": "eslint __test__",
"lint:src": "eslint src",
"lint:config": "eslint *.config.mjs",
"test": "jest --color -w 3",
"test:watch": "jest --color -w 3 --watch-all",
"build": "bundlib build -d",
"dev": "bundlib watch -d",
"ci-build": "run-s ts-check lint test build",
"clean-build": "run-s clean ci-build",
"prerelease": "run-s clean-build",
"release": "standard-version",
"dry-release": "standard-version --dry-run",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@stylistic/eslint-plugin": "^5.8.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"bundlib": "^0.21.9",
"chokidar": "^5.0.0",
"core-js": "^3.48.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"overrides": {
"bundlib": {
"eslint": "$eslint"
}
},
"author": {
"name": "Manuel Fernández",
"email": "manferlo81@gmail.com",
"url": "https://github.com/manferlo81"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manferlo81/gen-unit.git"
},
"bugs": {
"url": "https://github.com/manferlo81/gen-unit/issues"
},
"homepage": "https://github.com/manferlo81/gen-unit#readme",
"license": "MIT"
}