-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "conf-parser",
"author": {
"name": "SoulHarsh007",
"email": "harsh.peshwani@outlook.com",
"url": "https://github.com/SoulHarsh007"
},
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "ts-mocha tests/**/*.test.ts",
"coverage": "nyc npm test",
"coverage:report": "nyc report --reporter=lcov --reporter=text"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"INI",
"configuration",
"conf",
"parser",
"comments",
"pacman.conf",
"makepkg.conf"
],
"bugs": {
"email": "harsh.peshwani@outlook.com",
"url": "https://github.com/SoulHarsh007/conf-parser/issues"
},
"license": "BSD-3-Clause",
"description": "An INI file parser with support for reading and writing while keeping comments untouched",
"packageManager": "yarn@4.0.2",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"assert": "2.1.0",
"chai": "4.3.10",
"eslint": "8.56.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-security": "2.1.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.1.1",
"ts-mocha": "10.0.0",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}