inside-ci/package.json
Jonatan Nilsson d46e0d834e
Some checks failed
/ deploy (push) Failing after 14s
Minimize it further and clean it up
2024-11-22 05:08:16 +00:00

39 lines
727 B
JSON

{
"name": "inside-ci",
"version": "1.1.0",
"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": "./in.js",
"in-ci": "./in.js",
"not-ci": "./not.js"
},
"watch": {
"test": {
"patterns": ["in.js", "test.mjs"]
}
},
"repository": {
"type": "git",
"url": "https://git.nfp.is/TheThing/inside-ci.git"
},
"keywords": [
"ci",
"is-ci"
],
"author": "Jonatan Nilsson",
"license": "WTFPL",
"devDependencies": {
"eltro": "^1.6.1"
},
"files": [
"in.js",
"not.js",
"README.md",
"LICENSE"
]
}