63 lines
1.7 KiB
JSON
63 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.34"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.22.0",
|
|
"babel-plugin-istanbul": "^4.1.4",
|
|
"babel-preset-env": "^1.6.0",
|
|
"babel-register": "^6.26.0",
|
|
"bup": "^1.0.9",
|
|
"cross-env": "^5.0.5",
|
|
"eslint": "^4.5.0",
|
|
"eslint-config-joyent-portal": "3.0.0",
|
|
"nyc": "^11.1.0",
|
|
"redrun": "^5.9.17",
|
|
"tap-xunit": "^1.7.0"
|
|
},
|
|
"nyc": {
|
|
"sourceMap": false,
|
|
"instrument": false
|
|
},
|
|
"ava": {
|
|
"tap": true,
|
|
"require": ["babel-register"],
|
|
"babel": "inherit"
|
|
}
|
|
}
|