-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "yaml-prune",
"version": "1.0.1",
"description": "A simple command line script that allows to prune parts of a yaml file",
"main": "index.js",
"bin": {
"yaml-prune": "index.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "eslint index.js index.test.js && jest --verbose",
"release:tag": "git tag $npm_package_version && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/yaml-prune.git"
},
"keywords": [
"yaml",
"yml",
"yaml prune",
"yaml delete",
"yaml edit",
"yaml strip",
"yaml manipulate",
"command line",
"cli"
],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/yaml-prune/issues"
},
"homepage": "https://github.com/lmammino/yaml-prune#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1"
},
"dependencies": {
"object-path": "^0.11.4",
"yamljs": "^0.3.0"
}
}