57 lines
1.7 KiB
JSON
57 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "@discoveryjs/json-ext",
|
||
|
"version": "0.5.2",
|
||
|
"description": "A set of utilities that extend the use of JSON",
|
||
|
"keywords": [
|
||
|
"json",
|
||
|
"utils",
|
||
|
"stream",
|
||
|
"async",
|
||
|
"promise",
|
||
|
"stringify",
|
||
|
"info"
|
||
|
],
|
||
|
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
|
||
|
"license": "MIT",
|
||
|
"repository": "discoveryjs/json-ext",
|
||
|
"main": "./src/index",
|
||
|
"browser": {
|
||
|
"./src/stringify-stream.js": "./src/stringify-stream-browser.js",
|
||
|
"./src/text-decoder.js": "./src/text-decoder-browser.js"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "mocha --reporter progress",
|
||
|
"lint": "eslint src test",
|
||
|
"lint-and-test": "npm run lint && npm test",
|
||
|
"build": "rollup --config",
|
||
|
"test:all": "npm run test:src && npm run test:dist",
|
||
|
"test:src": "npm test",
|
||
|
"test:dist": "MODE=dist npm test && MODE=dist-min npm test",
|
||
|
"build-and-test": "npm run build && npm run test:dist",
|
||
|
"coverage": "nyc npm test",
|
||
|
"travis": "nyc npm run lint-and-test && npm run coveralls",
|
||
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||
|
"prepublishOnly": "npm run build"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"devDependencies": {
|
||
|
"@rollup/plugin-commonjs": "^15.1.0",
|
||
|
"@rollup/plugin-json": "^4.1.0",
|
||
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
||
|
"chalk": "^4.1.0",
|
||
|
"coveralls": "^3.1.0",
|
||
|
"eslint": "^7.6.0",
|
||
|
"mocha": "^8.1.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"rollup": "^2.28.2",
|
||
|
"rollup-plugin-terser": "^7.0.2"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=10.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"src"
|
||
|
]
|
||
|
}
|