UNPKG

@atomist/yaml-updater

Version:

Update YAML documents while ensuring clean diffs

69 lines (68 loc) 2.23 kB
{ "name": "@atomist/yaml-updater", "version": "1.0.2", "description": "Update YAML documents while ensuring clean diffs", "author": { "name": "Atomist", "email": "support@atomist.com", "url": "https://atomist.com/" }, "license": "Apache-2.0", "homepage": "https://github.com/atomist/yaml-updater#readme", "repository": { "type": "git", "url": "git+https://github.com/atomist/yaml-updater.git" }, "bugs": { "url": "https://github.com/atomist/yaml-updater/issues" }, "keywords": [ "atomist", "yaml" ], "main": "./index.js", "types": "./index.d.ts", "dependencies": { "@types/js-yaml": "^3.12.1", "fast-deep-equal": "^2.0.1", "js-yaml": "^3.13.1" }, "devDependencies": { "@types/mocha": "^5.2.5", "@types/power-assert": "^1.5.0", "espower-typescript": "^9.0.0", "mocha": "^5.2.0", "npm-run-all": "^4.1.3", "power-assert": "^1.6.0", "rimraf": "^2.6.2", "supervisor": "^0.12.0", "ts-node": "^8.0.3", "tslint": "^5.15.0", "typedoc": "^0.14.2", "typescript": "^3.4.1" }, "directories": { "test": "test" }, "scripts": { "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test", "build": "run-s compile test lint doc", "clean": "run-p clean:compile clean:doc clean:run", "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts", "clean:dist": "run-s clean clean:npm", "clean:doc": "rimraf doc", "clean:npm": "rimraf node_modules", "clean:run": "rimraf *-v8.log profile.txt log", "compile": "tsc --project .", "doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib", "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"", "lint:fix": "npm run lint -- --fix", "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"", "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"", "typedoc": "npm run doc" }, "engines": { "node": ">=8.0.0", "npm": ">=5.0.0" } }