42 lines
793 B
JSON
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"
|
|
]
|
|
}
|