-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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
{
"name": "geneasy-yaml",
"version": "0.0.1",
"description": "A plugin that enables geneasy to use dafa files in YAML format.",
"type": "module",
"exports": "./lib/index.js",
"scripts": {
"lint": "prettier --write . && xo",
"lint:fix": "prettier --write . && xo --fix",
"test": "mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geneasy/geneasy-handlebars.git"
},
"keywords": [
"geneasy",
"yaml",
"json"
],
"author": "Pipecraft <[email protected]> (https://www.pipecraft.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/geneasy/geneasy-yaml/issues"
},
"homepage": "https://github.com/geneasy/geneasy-yaml#readme",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.1",
"prettier": "^2.4.1",
"xo": "^0.44.0"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"xo": {
"space": 2,
"prettier": true,
"rules": {},
"overrides": [
{
"files": "test/*.js",
"envs": [
"node",
"mocha"
]
}
]
}
}