mirror of
https://github.com/github/codeql-action.git
synced 2026-05-17 00:30:27 +00:00
Add glob-hash dependency
This commit is contained in:
+63
-32
@@ -1,38 +1,40 @@
|
||||
{
|
||||
"name": "flatted",
|
||||
"version": "2.0.2",
|
||||
"description": "A super light and fast circular JSON parser.",
|
||||
"unpkg": "min.js",
|
||||
"main": "cjs/index.js",
|
||||
"module": "esm/index.js",
|
||||
"types": "types.d.ts",
|
||||
"scripts": {
|
||||
"bench": "node test/bench.js",
|
||||
"build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
|
||||
"cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
|
||||
"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",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||||
"test": "nyc node test/index.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/WebReflection/flatted.git"
|
||||
},
|
||||
"keywords": [
|
||||
"circular",
|
||||
"JSON",
|
||||
"fast",
|
||||
"parser",
|
||||
"minimal"
|
||||
"_args": [
|
||||
[
|
||||
"flatted@2.0.2",
|
||||
"/home/marco/repos/github/codeql-action"
|
||||
]
|
||||
],
|
||||
"author": "Andrea Giammarchi",
|
||||
"license": "ISC",
|
||||
"_development": true,
|
||||
"_from": "flatted@2.0.2",
|
||||
"_id": "flatted@2.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
|
||||
"_location": "/flatted",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "flatted@2.0.2",
|
||||
"name": "flatted",
|
||||
"escapedName": "flatted",
|
||||
"rawSpec": "2.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/flat-cache"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
|
||||
"_spec": "2.0.2",
|
||||
"_where": "/home/marco/repos/github/codeql-action",
|
||||
"author": {
|
||||
"name": "Andrea Giammarchi"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/WebReflection/flatted/issues"
|
||||
},
|
||||
"homepage": "https://github.com/WebReflection/flatted#readme",
|
||||
"description": "A super light and fast circular JSON parser.",
|
||||
"devDependencies": {
|
||||
"circular-json": "^0.5.9",
|
||||
"circular-json-es6": "^2.0.2",
|
||||
@@ -40,5 +42,34 @@
|
||||
"jsan": "^3.1.13",
|
||||
"nyc": "^15.0.0",
|
||||
"uglify-js": "^3.8.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"homepage": "https://github.com/WebReflection/flatted#readme",
|
||||
"keywords": [
|
||||
"circular",
|
||||
"JSON",
|
||||
"fast",
|
||||
"parser",
|
||||
"minimal"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "cjs/index.js",
|
||||
"module": "esm/index.js",
|
||||
"name": "flatted",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/WebReflection/flatted.git"
|
||||
},
|
||||
"scripts": {
|
||||
"bench": "node test/bench.js",
|
||||
"build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
|
||||
"cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||||
"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": "nyc node test/index.js"
|
||||
},
|
||||
"types": "types.d.ts",
|
||||
"unpkg": "min.js",
|
||||
"version": "2.0.2"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user