standard/package.json
2020-05-13 21:26:59 +02:00

31 lines
733 B
JSON

{
"name": "@sapphirecode/standard",
"version": "1.0.0",
"main": "index.js",
"author": "Timo Hocker <timo@sapphirecode.ovh>",
"description": "standard files and scripts for sapphirecode modules",
"repository": {
"type": "git",
"url": "https://git.scode.ovh/timo/standard.git"
},
"keywords": [
"standard"
]
"license": "MIT",
"devDependencies": {
"@sapphirecode/eslint-config": "^2.1.3",
"eslint": "^7.0.0"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "echo \"no test\"",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js",
"ci": "yarn && node jenkins.js"
},
"files": [
"LICENSE",
"*.js",
"*.d.ts"
]
}