joyent-portal/packages/pseudo-yaml-ast/package.json

67 lines
1.7 KiB
JSON

{
"name": "pseudo-yaml-ast",
"version": "1.0.6",
"license": "MPL-2.0",
"description": "Parse a YAML string into an object with location properties",
"keywords": [
"parse",
"yaml",
"yml",
"json",
"ast",
"abstract",
"syntax",
"tree",
"loc",
"location"
],
"repository": "github:yldio/joyent-portal",
"main": "dist/pseudo-yaml-ast.umd.js",
"jsnext:main": "dist/pseudo-yaml-ast.es.js",
"module": "dist/pseudo-yaml-ast.es.js",
"entry": "src/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --fix",
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/pseudo-yaml-ast.xml",
"test:run": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test-ci:run": "cross-env NODE_ENV=test nyc --report-dir=$CIRCLE_ARTIFACTS/pseudo-yaml-ast --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/pseudo-yaml-ast.xml",
"test": "redrun build test:run",
"test-ci": "redrun build test-ci:run",
"build": "bup",
"prepublish": "bup"
},
"dependencies": {
"has-own-prop": "^1.0.0",
"lodash.isnull": "^3.0.0",
"lodash.isundefined": "^3.0.1",
"yaml-ast-parser": "0.0.33"
},
"devDependencies": {
"ava": "0.19.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.24.1",
"bup": "^1.0.9",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-joyent-portal": "1.0.0",
"nyc": "^11.0.2",
"redrun": "^5.9.14",
"tap-xunit": "^1.7.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"ava": {
"tap": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}