-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "quick-yaml.db",
"version": "1.2.2",
"description": "An easy, open-source, Node.js database based on YAML files.",
"main": "lib/cjs/index.js",
"typings": "typings/index.d.ts",
"exports": {
".": {
"import": "./lib/es6/index.js",
"require": "./lib/cjs/index.js"
},
"./lib/cjs/*": "./lib/cjs/*.js",
"./lib/es6/*": "./lib/es6/*.js"
},
"scripts": {
"test": "node .",
"compile-es6": "tsc --project tsconfig.es6.json",
"compile-cjs": "tsc --project tsconfig.cjs.json"
},
"keywords": [
"js-yaml",
"js-yml",
"node yaml",
"node yml",
"yaml",
"yml",
"yaml-db",
"yaml db",
"yml-db",
"yml db",
"yaml database",
"yml database"
],
"author": "TFAGaming",
"license": "GPL-3.0",
"dependencies": {
"js-yaml": "^4.1.0"
},
"repository": {
"url": "https://github.com/TFAGaming/quick-yaml.db.git"
},
"homepage": "",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"undici-types": "^6.3.0"
}
}