snippeteer/package.json

38 lines
816 B
JSON
Raw Normal View History

2020-01-15 11:40:33 +01:00
{
2020-01-15 11:50:44 +01:00
"name": "@scode/snippeteer",
2020-01-15 11:40:33 +01:00
"version": "1.0.0",
"description": "macros for setting up projects or project parts",
"main": "index.js",
2020-01-15 14:14:54 +01:00
"bin": {
"snippeteer": "./index.js"
2020-01-15 11:40:33 +01:00
},
2020-01-15 15:43:23 +01:00
"scripts": {
2020-02-21 12:23:15 +01:00
"lint": "eslint .",
2020-03-14 14:27:29 +01:00
"ci": "yarn --frozen-lockfile && node jenkins.js",
"test": "echo \"no test\""
2020-01-15 15:43:23 +01:00
},
2020-01-15 11:40:33 +01:00
"repository": {
"type": "git",
"url": "git@git.scode.ovh:timo/snippeteer"
},
2020-01-17 18:10:30 +01:00
"files": [
"/snippets/",
2020-01-30 10:57:34 +01:00
"LICENSE"
2020-01-17 18:10:30 +01:00
],
2020-01-15 11:40:33 +01:00
"author": "Timo Hocker",
2020-01-18 14:53:50 +01:00
"license": "BSD-3-Clause",
2020-01-15 11:50:44 +01:00
"devDependencies": {
2020-01-30 11:29:27 +01:00
"@scode/eslint-config": "^1.2.8",
2020-03-14 14:05:09 +01:00
"@stryker-mutator/core": "^3.0.2",
"@stryker-mutator/javascript-mutator": "^3.0.2",
2020-01-15 11:50:44 +01:00
"eslint": "^6.8.0"
2020-01-15 12:09:29 +01:00
},
"dependencies": {
2020-03-20 08:27:53 +01:00
"fs-extra": "^9.0.0",
2020-01-15 12:09:29 +01:00
"yargs": "^15.1.0"
},
"engines": {
"node": ">=10.0.0"
2020-01-15 11:50:44 +01:00
}
2020-01-15 11:40:33 +01:00
}