inside-ci/package.json
Jonatan Nilsson e866e58dda
All checks were successful
/ deploy (push) Successful in 25s
Trim the fat and fix typings
Clean the code a bit.
Move comments to test to decrease dependency size
Minify package.json for extra.
2024-11-19 00:13:06 +00:00

39 lines
726 B
JSON

{
"name": "inside-ci",
"version": "1.0.1",
"description": "Quick tool to check if we are inside CI",
"main": "index.js",
"scripts": {
"test": "eltro -r dot test.mjs",
"test:watch": "eltro -r dot -w test test.mjs"
},
"bin": {
"inside-ci": "./index.js"
},
"watch": {
"test": {
"patterns": ["index.js", "test.mjs"]
}
},
"repository": {
"type": "git",
"url": "https://git.nfp.is/TheThing/inside-ci.git"
},
"keywords": [
"ci",
"is-ci",
"inside-ci",
"environment"
],
"author": "Jonatan Nilsson",
"license": "WTFPL",
"devDependencies": {
"eltro": "^1.6.1"
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
]
}