-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 857 Bytes
/
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
{
"name": "dot-properties",
"version": "1.0.1",
"license": "MIT",
"author": "Eemeli Aro <[email protected]>",
"repository": "github:eemeli/dot-properties",
"description": "Parse & stringify .properties files",
"keywords": [
"properties",
"java",
"resource",
"bundle",
"i18n"
],
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"testMatch": [
"**/tests/*.js"
]
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5"
}
}