UNPKG

json-6

Version:
81 lines (80 loc) 2.33 kB
{ "name": "json-6", "version": "1.1.4", "description": "JSON for the ES6 era.", "keywords": [ "json", "es6" ], "author": "d3x0r <d3x0r@github.com>", "contributors": [], "module": "dist/index.mjs", "main": "lib/json6.js", "bin": "lib/cli.js", "browser": "dist/index.js", "files": [ "dist/", "lib/" ], "dependencies": {}, "devDependencies": { "@babel/preset-env": "latest", "@rollup/plugin-babel": "latest", "@rollup/plugin-commonjs": "latest", "@rollup/plugin-node-resolve": "^7", "@rollup/plugin-strip": "latest", "acorn": "latest", "chai": "latest", "core-js": "latest", "eslint": "latest", "husky": "latest", "lint-staged": "latest", "mocha": "latest", "nyc": "latest", "rollup": "latest", "rollup-plugin-terser": "latest" }, "nyc": { "statements": 100, "branches": 100, "functions": 100, "lines": 100, "ignore-class-method": [ "log" ], "reporter": [ "lcov", "text" ] }, "scripts": { "prepack": "npm run test-lite", "lint": "eslint --cache .", "build": "node ./lib/cli.js -c package.json6 && rollup -c", "mocha-lite": "mocha --require chai/register-expect --experimental-loader=./lib/import.mjs --require ./lib/require.js ", "mocha": "mocha --require chai/register-expect --require ./lib/require.js --experimental-loader=./lib/import.mjs --recursive", "nyc-lite": "nyc npm run mocha-lite", "nyc": "nyc npm run mocha", "test-lite": "npm run lint && npm run build && npm run nyc-lite", "test": "npm run lint && npm run build && npm run nyc" }, "homepage": "http://npmjs.org/package/json-6/", "engines": { "node": ">=10.0.0" }, "bugs": "https://github.com/d3x0r/json6/issues", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/d3x0r/json6" }, "husky": { "hooks": { "pre-push": "npm run test-lite", "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": "eslint --cache --fix" } }