-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.48 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
55
56
{
"name": "js-java-properties",
"version": "1.0.3",
"description": "Java properties file parser and formatter for Javascript.",
"scripts": {
"lint": "eslint .",
"fix": "npm run lint -- --fix",
"prebuild": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"test": "jest --config jest.config.ts --coverage",
"test:ci": "npm run lint && npm run test -- --no-cache",
"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": ">= 16"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.5.0",
"prettier": "^3.1.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}