UNPKG

raw-yaml

Version:

Read anything as YAML (including #comments)

59 lines (58 loc) 1.37 kB
{ "name": "raw-yaml", "version": "0.2.5", "main": "dist/index.js", "license": "ISC", "author": "Eemeli Aro <eemeli@gmail.com>", "repository": "github:eemeli/raw-yaml", "description": "Read anything as YAML (including #comments)", "keywords": [ "YAML", "AST", "loader", "dumper", "comments" ], "homepage": "https://github.com/eemeli/raw-yaml#readme", "files": [ "dist/" ], "scripts": { "build": "babel src/ --out-dir dist/", "test": "TRACE_LEVEL=log jest", "test:trace": "TRACE_LEVEL=trace,log jest --no-cache", "preversion": "npm test && npm run build", "version": "git commit -am \"Update version\" && git add -f dist/", "postversion": "git reset --hard HEAD^", "prepublishOnly": "npm test && npm run build" }, "babel": { "presets": [ "@babel/env", "@babel/stage-3" ], "plugins": [ [ "trace", { "strip": true } ] ] }, "jest": { "testPathIgnorePatterns": [ "__tests__/common" ] }, "devDependencies": { "@babel/cli": "^7.0.0-beta.39", "@babel/core": "^7.0.0-beta.39", "@babel/preset-env": "^7.0.0-beta.39", "@babel/preset-stage-3": "^7.0.0-beta.39", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^22.2.0", "babel-plugin-trace": "^1.1.0", "jest": "^22.2.1" } }