{ "name": "pseudo-json-ast", "version": "1.0.6", "license": "MPL-2.0", "description": "Parse a JSON string into an object with location properties", "keywords": [ "parse", "json", "ast", "abstract", "syntax", "tree", "loc", "location" ], "repository": "github:yldio/joyent-portal", "main": "dist/pseudo-json-ast.umd.js", "jsnext:main": "dist/pseudo-json-ast.es.js", "module": "dist/pseudo-json-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-json-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-json-ast --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/pseudo-json-ast.xml", "test": "redrun -s build test:run", "test-ci": "redrun -s build test-ci:run", "build": "bup", "prepublish": "bup" }, "dependencies": { "acorn": "^5.0.3", "has-own-prop": "^1.0.0", "lodash.isnull": "^3.0.0", "lodash.isundefined": "^3.0.1" }, "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" } }