github-pages-deploy-action/node_modules/flatted/package.json

45 lines
1.5 KiB
JSON
Raw Normal View History

2020-03-07 11:45:40 +08:00
{
2020-03-31 20:57:48 +08:00
"name": "flatted",
"version": "2.0.1",
2020-03-22 05:13:25 +08:00
"description": "A super light and fast circular JSON parser.",
2020-03-31 20:57:48 +08:00
"unpkg": "min.js",
2020-03-22 05:13:25 +08:00
"main": "cjs/index.js",
"module": "esm/index.js",
2020-03-31 20:57:48 +08:00
"types": "types.d.ts",
2020-03-22 05:13:25 +08:00
"scripts": {
"bench": "node test/bench.js",
"build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
"coveralls": "cat ./coverage/lcov.info | coveralls",
2020-03-31 20:57:48 +08:00
"cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
2020-03-22 05:13:25 +08:00
"esm": "cp index.js esm/index.js; echo 'export default Flatted;' >> esm/index.js; echo 'export var parse = Flatted.parse;' >> esm/index.js; echo 'export var stringify = Flatted.stringify;' >> esm/index.js",
"min": "echo '/*! (c) 2018, Andrea Giammarchi, (ISC) */'>min.js && uglifyjs index.js --support-ie8 -c -m >> min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
"test": "istanbul cover test/index.js"
},
2020-03-31 20:57:48 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/flatted.git"
},
"keywords": [
"circular",
"JSON",
"fast",
"parser",
"minimal"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebReflection/flatted/issues"
},
"homepage": "https://github.com/WebReflection/flatted#readme",
"devDependencies": {
"circular-json": "latest",
"circular-json-es6": "latest",
"coveralls": "latest",
"istanbul": "latest",
"jsan": "latest",
"uglify-js": "latest"
}
2020-03-07 11:45:40 +08:00
}