snippeteer/package.json

36 lines
758 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-04-14 14:57:01 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
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-04-06 09:43:50 +02:00
"@scode/eslint-config": "^2.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
}