-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "yaml-include",
"version": "0.0.0-development",
"description": "Custom YAML tag definitions to support modular YAML documents with js-yaml.",
"main": "index.js",
"scripts": {
"test": "nyc ava test/test-* --verbose",
"report-coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=text-lcov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"semantic-commit": "commit"
},
"keywords": [
"yaml",
"include",
"modular",
"js-yaml",
"js-yaml-tag"
],
"repository": {
"type": "git",
"url": "https://github.com/claylo/yaml-include.git"
},
"bugs": {
"url": "https://github.com/claylo/yaml-include/issues"
},
"homepage": "https://github.com/claylo/yaml-include",
"author": "claylo",
"license": "ISC",
"dependencies": {
"debug": "^4.1.1",
"js-yaml": "^3.13.1",
"lodash.merge": "^4.6.2",
"recursive-readdir-sync": "^1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/prompt-cli": "^8.2.0",
"ava": "2.4.0",
"coveralls": "^3.0.6",
"nyc": "^14.1.1",
"semantic-release": "^15.13.24"
},
"engines": {
"node": ">=4"
}
}