inside-ci/package.json
Jonatan Nilsson 6e6d989a50
All checks were successful
/ deploy (push) Successful in 27s
Implemented new cli: in-ci and not-ci
2024-11-19 10:44:37 +00:00

42 lines
793 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": "./index.js",
"in-ci": "./index.js",
"not-ci": "./not.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",
"not.js",
"index.d.ts",
"README.md",
"LICENSE"
]
}