forked from pandastrike/yaml-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "yaml-cli",
"version": "1.1.8",
"description": "A simple CLI for querying and updating YAML files",
"files": [
"completions",
"libexec",
"lib",
"share"
],
"bin": {
"yaml": "libexec/yaml"
},
"scripts": {
"test": "coffee -o lib/ -c src/*.*coffee && coffee test/test.coffee",
"prepublish": "coffee -o lib/ -c src/*.*coffee",
"postpublish": "(node_modules/.bin/json -f package.json version | xargs -I version git tag -am version version) && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandastrike/yaml-cli.git"
},
"keywords": [
"yaml",
"cli"
],
"author": "Dan Yoder",
"license": "ISC",
"bugs": {
"url": "https://github.com/pandastrike/yaml-cli/issues"
},
"homepage": "https://github.com/pandastrike/yaml-cli#readme",
"dependencies": {
"@iarna/toml": "^2.2.1",
"fairmont": "^1.0.0-beta-40",
"js-yaml": "^3.5.3",
"markup-js": "^1.5.21"
},
"devDependencies": {
"amen": "^1.0.0-alpha-06",
"coffee-script": "^1.10.0",
"json": "^9.0.3"
}
}