All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
42 lines
995 B
JSON
42 lines
995 B
JSON
{
|
|
"name": "json-stringify-pretty-compact",
|
|
"version": "2.0.0",
|
|
"author": "Simon Lydell",
|
|
"license": "MIT",
|
|
"description": "The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.",
|
|
"main": "index.js",
|
|
"repository": "lydell/json-stringify-pretty-compact",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"JSON",
|
|
"stringify",
|
|
"pretty",
|
|
"print",
|
|
"pretty-print",
|
|
"compact",
|
|
"indent",
|
|
"format",
|
|
"formatter"
|
|
],
|
|
"scripts": {
|
|
"eslint": "eslint .",
|
|
"eslint:fix": "npm run eslint -- --fix",
|
|
"prettier": "prettier --write \"**/*.{md,ts}\"",
|
|
"jest": "jest",
|
|
"coverage": "jest --coverage",
|
|
"test": "npm run eslint && npm run coverage",
|
|
"prepublishOnly": "npm test"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "5.13.0",
|
|
"eslint-config-lydell": "13.0.0",
|
|
"eslint-plugin-jest": "22.2.2",
|
|
"eslint-plugin-prettier": "3.0.1",
|
|
"jest": "24.0.0",
|
|
"prettier": "1.16.3"
|
|
}
|
|
}
|