-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "js-java-properties",
"version": "1.1.0",
"description": "Java properties file parser and formatter for Javascript.",
"scripts": {
"lint": "eslint .",
"fix": "prettier --write src && npm run lint -- --fix",
"build": "unbuild",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:ci": "npm run lint && npm run test",
"all": "npm run lint && npm run build && npm run test",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdvorak/js-java-properties.git"
},
"keywords": [
"java",
"properties",
"parser",
"formatter"
],
"author": "Michal Dvorak",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdvorak/js-java-properties/issues"
},
"homepage": "https://github.com/mdvorak/js-java-properties#readme",
"engines": {
"node": ">= 20"
},
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
}
},
"files": [
"lib"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"unbuild": "^3.6.1",
"vitest": "^4.0.6"
},
"overrides": {
"eslint": "~9.38.0"
}
}