github-pages-deploy-action/node_modules/fast-json-stable-stringify/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2020-01-28 13:07:56 +08:00
{
2020-03-31 20:57:48 +08:00
"name": "fast-json-stable-stringify",
"version": "2.0.0",
2020-01-28 13:07:56 +08:00
"description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify",
2020-03-31 20:57:48 +08:00
"main": "index.js",
2020-01-28 13:07:56 +08:00
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
2020-03-31 20:57:48 +08:00
"eslint": "^4.9.0",
2020-01-28 13:07:56 +08:00
"fast-stable-stringify": "latest",
"faster-stable-stringify": "latest",
"json-stable-stringify": "latest",
2020-03-31 20:57:48 +08:00
"nyc": "^11.2.1",
2020-01-28 13:07:56 +08:00
"pre-commit": "^1.2.2",
2020-03-31 20:57:48 +08:00
"tape": "~1.0.4"
},
"scripts": {
"eslint": "eslint index.js test",
"test-spec": "tape test/*.js",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/epoberezkin/fast-json-stable-stringify.git"
2020-01-28 13:07:56 +08:00
},
"homepage": "https://github.com/epoberezkin/fast-json-stable-stringify",
"keywords": [
"json",
"stringify",
"deterministic",
"hash",
"stable"
],
2020-03-31 20:57:48 +08:00
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
2020-01-28 13:07:56 +08:00
"license": "MIT",
"nyc": {
"exclude": [
"test",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
2020-03-31 20:57:48 +08:00
}
2020-01-28 13:07:56 +08:00
}