standard/package.json

21 lines
496 B
JSON
Raw Normal View History

2020-05-04 12:00:18 +02:00
{
"name": "@scode/standard",
"version": "1.0.0",
"main": "index.js",
2020-05-04 20:47:01 +02:00
"author": "Timo Hocker <timo@scode.ovh>",
2020-05-04 12:00:18 +02:00
"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 20:46:08 +02:00
},
"files": [
"LICENSE",
"*.js"
]
2020-05-04 20:47:01 +02:00
}