-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
{
"name": "@map-colonies/read-pkg",
"version": "1.0.0",
"description": "This is a helper for reading and parsing package json files",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"test:unit": "jest --config=./tests/configurations/unit/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tsc --noEmit -p tsconfig.json && npm run test:unit",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepublish": "npm run build",
"prepare": "husky",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/read-pkg.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/read-pkg/issues"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/MapColonies/read-pkg#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@map-colonies/commitlint-config": "^1.1.0",
"@map-colonies/eslint-config": "^6.0.0",
"@map-colonies/infra-copilot-instructions": "^1.0.0",
"@map-colonies/prettier-config": "^0.0.1",
"@map-colonies/tsconfig": "^1.0.0",
"@swc/core": "^1.10.12",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.4",
"commitlint": "^19.7.1",
"eslint": "^9.22.0",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"typedoc": "^0.28.3",
"typescript": "^5.7.3"
},
"dependencies": {
"type-fest": "^4.33.0"
}
}