Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
57 lines
1007 B
Plaintext
57 lines
1007 B
Plaintext
{
|
|
"name": "strip-json-comments",
|
|
"version": "5.0.3",
|
|
"description": "Strip comments from JSON. Lets you use comments in your JSON files!",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/strip-json-comments",
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"type": "module",
|
|
"exports": "./index.js",
|
|
"types": "./index.d.ts",
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=14.16"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsd",
|
|
"bench": "matcha benchmark.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"json",
|
|
"strip",
|
|
"comments",
|
|
"remove",
|
|
"delete",
|
|
"trim",
|
|
"multiline",
|
|
"parse",
|
|
"config",
|
|
"configuration",
|
|
"settings",
|
|
"util",
|
|
"env",
|
|
"environment",
|
|
"jsonc"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^4.3.1",
|
|
"matcha": "^0.7.0",
|
|
"tsd": "^0.22.0",
|
|
"xo": "^0.54.2"
|
|
},
|
|
"xo": {
|
|
"rules": {
|
|
"complexity": "off"
|
|
}
|
|
}
|
|
}
|