inside-ci/package.json

40 lines
724 B
JSON
Raw Normal View History

2024-11-18 23:57:35 +00:00
{
"name": "inside-ci",
2024-11-22 05:26:41 +00:00
"version": "1.1.2",
2024-11-18 23:57:35 +00:00
"description": "Quick tool to check if we are inside CI",
2024-11-22 05:26:41 +00:00
"main": "in.js",
2024-11-18 23:57:35 +00:00
"scripts": {
"test": "eltro -r dot test.mjs",
"test:watch": "eltro -r dot -w test test.mjs"
},
"bin": {
2024-11-22 05:02:56 +00:00
"inside-ci": "./in.js",
"in-ci": "./in.js",
2024-11-19 10:44:37 +00:00
"not-ci": "./not.js"
2024-11-18 23:57:35 +00:00
},
"watch": {
"test": {
2024-11-22 05:02:56 +00:00
"patterns": ["in.js", "test.mjs"]
2024-11-18 23:57:35 +00:00
}
},
"repository": {
"type": "git",
"url": "https://git.nfp.is/TheThing/inside-ci.git"
},
"keywords": [
"ci",
2024-11-22 05:02:56 +00:00
"is-ci"
2024-11-18 23:57:35 +00:00
],
"author": "Jonatan Nilsson",
"license": "WTFPL",
"devDependencies": {
"eltro": "^1.6.1"
},
"files": [
2024-11-22 05:02:56 +00:00
"in.js",
2024-11-19 10:44:37 +00:00
"not.js",
2024-11-18 23:57:35 +00:00
"README.md",
"LICENSE"
]
}