This repository was archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "cfg-reader",
"version": "3.0.0-dev",
"description": "alt-config (alt:V configuration) file parser",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs",
"import": "./dist/index.mjs"
}
},
"types": "./types/index.d.ts",
"scripts": {
"build": "rollup -c",
"types": "tsc --emitDeclarationOnly && rollup -c rollup.config-dts.js",
"test": "mocha",
"test:scalar": "mocha ./test/scalar.test.mjs",
"test:list": "mocha ./test/list.test.mjs",
"test:dict": "mocha ./test/dict.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Timo972/cfg-reader.git"
},
"keywords": [
"cfg",
"cfg-reader",
"config",
"alt-config",
"alt:V config",
"altV config",
"altMP config"
],
"author": "Timo92_",
"license": "ISC",
"bugs": {
"url": "https://github.com/Timo972/cfg-reader/issues"
},
"homepage": "https://github.com/Timo972/cfg-reader#readme",
"devDependencies": {
"@swc/core": "^1.2.165",
"@types/node": "^16.11.26",
"fs": "0.0.1-security",
"mocha": "^8.3.0",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"unplugin-swc": "^1.3.0"
},
"engines": {
"node": ">= 12"
}
}