-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "yaml-datastore",
"version": "0.1.0-alpha.2",
"description": " Library for Storing and Manipulating Data Across Multiple YAML Files ",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"prepare": "npm run build",
"build": "rm -rf ./dist && tsup",
"dev": "tsup --watch",
"test": "c8 mocha --forbid-only",
"docs": "typedoc",
"lint": "eslint ./src/**/*.ts",
"preversion": "npm run test",
"version": "npm run build && git add docs",
"postversion": "git push && git push --tags"
},
"bin": {
"yds-ids": "./bin/yds-ids.js",
"yds-load": "./bin/yds-load.js",
"yds-store": "./bin/yds-store.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dof-initiative/yaml-datastore.git"
},
"keywords": [
"yaml",
"crud",
"filesystem",
"datastore"
],
"author": "Mach 30",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dof-initiative/yaml-datastore/issues"
},
"homepage": "https://github.com/dof-initiative/yaml-datastore#readme",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/chai": "^5.2.0",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/folder-hash": "^4.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@types/shelljs": "^0.8.16",
"c8": "^10.1.3",
"chai": "^5.2.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"folder-hash": "^4.1.1",
"mocha": "^11.3.0",
"prettier": "^3.5.3",
"shelljs": "^0.10.0",
"tsup": "^8.5.1",
"tsx": "^4.19.3",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"type": "module",
"dependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"pure-rand": "^7.0.1"
},
"overrides": {
"glob": "^13.0.6",
"diff": "^9.0.0",
"serialize-javascript": "^7.0.7",
"esbuild": "^0.28.1"
}
}