-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 895 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 895 Bytes
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
{
"name": "ini-api",
"description": "A clean class-based API for parsing, editing, and creating INI files.",
"version": "2.0.2",
"author": "Mator",
"homepage": "https://github.com/matortheeternal/ini-api",
"license": "MIT",
"keywords": [
"ini",
"stringify",
"parse",
"config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matortheeternal/ini-api.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "node build.js",
"test": "jasmine --config=jasmine.json",
"coverage": "c8 npm test"
},
"devDependencies": {
"c8": "^10.1.3",
"esbuild": "^0.25.11",
"jasmine": "^5.12.0"
}
}