standard/package.json

18 lines
454 B
JSON
Raw Normal View History

2020-05-04 12:00:18 +02:00
{
"name": "@scode/standard",
"version": "1.0.0",
"main": "index.js",
"author": "Timo Hocker <t-hocker@web.de>",
"license": "MIT",
"devDependencies": {
"@scode/eslint-config": "^2.0.15",
"eslint": "^6.8.0"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-05-04 12:05:52 +02:00
"test": "echo \"no test\"",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js",
2020-05-04 12:00:18 +02:00
"ci": "yarn && node jenkins.js"
}
2020-05-04 12:05:52 +02:00
}