-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "java-props",
"version": "2.3.1",
"description": "Read Java .properties files (using the same specification), without useless additional features.",
"author": "Nathan Poirier <nathan@poirier.io>",
"license": "MIT",
"keywords": [
"java",
"properties",
"java-properties",
"reader",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/nathan818fr/node-java-props.git"
},
"files": [
"dist/**"
],
"main": "dist/node-java-props.js",
"browser": "dist/java-props.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "yarn run clean && yarn run build:ts",
"build:ts": "tsc",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json",
"format": "prettier -w ./src \"./test/**.ts\" \"*.md\" \"*.json\" \"*.js\" \"*.yml\"",
"test": "jest --coverage --verbose",
"test:watch": "yarn run test -- --watchAll",
"release": "yarn run lint && yarn run build && np"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^3.9.10"
},
"resolutions": {
"stack-utils": "1.0.2"
}
}