1
0
Fork 0
salty-dog/package.json

36 lines
845 B
JSON
Raw Normal View History

2019-06-15 20:20:04 +00:00
{
2019-06-15 21:17:26 +00:00
"name": "salty",
2019-06-15 20:20:04 +00:00
"version": "0.1.0",
"description": "YAML linter, transformer, and validator",
"main": "out/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "out/harness.js"
},
"author": "ssube",
"license": "MIT",
"dependencies": {
"ajv": "^6.10.0",
"bunyan": "^1.8.12",
"js-yaml": "^3.13.1",
"lodash": "^4.17.11",
"noicejs": "^2.5.2",
"yargs-parser": "^13.1.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.134",
"@types/yargs-parser": "^13.0.0",
"rollup": "^1.15.5",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
2019-06-15 21:17:26 +00:00
"rollup-plugin-replace": "^2.2.0",
2019-06-15 20:20:04 +00:00
"rollup-plugin-typescript2": "^0.21.1",
"typescript": "^3.5.2"
}
}