forked from jednano/ini-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@jedmao/ini-parser",
"version": "0.2.4",
"description": "A highly forgiving and configurable INI parser for the informal INI file format.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf jedmao-ini-parser-* coverage dist",
"lint": "tslint --project tsconfig.json",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "nyc ava",
"watch": "ava --watch",
"prepub": "npm run lint && npm test && npm run build",
"pub": "npm publish"
},
"files": [
"dist"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register"
],
"snapshotDir": "snapshots",
"sources": [
"src/**/*.ts",
"src/fixtures/**"
]
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"check-coverage": true,
"extends": "@istanbuljs/nyc-config-typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedmao/ini-parser.git"
},
"keywords": [
"ini",
"parser",
"parse",
"ast",
"read",
"write",
"format",
"configurable",
"browser"
],
"author": "Jed Mao <jedmao@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedmao/ini-parser/issues"
},
"homepage": "https://github.com/jedmao/ini-parser#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/globby": "^9.1.0",
"@types/node": "^12.11.5",
"ava": "^2.4.0",
"globby": "^10.0.1",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}