standard/package.json

30 lines
691 B
JSON
Raw Normal View History

2020-05-04 12:00:18 +02:00
{
2020-05-05 19:24:07 +02:00
"name": "@sapphirecode/standard",
2020-07-09 21:10:20 +02:00
"version": "1.1.10",
2020-05-04 12:00:18 +02:00
"main": "index.js",
2020-05-17 19:00:53 +02:00
"author": "Timo Hocker <timo@scode.ovh>",
2020-05-12 10:21:49 +02:00
"description": "standard files and scripts for sapphirecode modules",
"repository": {
"type": "git",
2020-05-13 10:48:53 +02:00
"url": "https://git.scode.ovh/timo/standard.git"
2020-05-12 10:21:49 +02:00
},
2020-05-13 21:26:59 +02:00
"keywords": [
"standard"
2020-05-13 21:30:49 +02:00
],
2020-05-04 12:00:18 +02:00
"license": "MIT",
"devDependencies": {
2020-05-13 21:24:38 +02:00
"@sapphirecode/eslint-config": "^2.1.3",
"eslint": "^7.0.0"
2020-05-04 12:00:18 +02:00
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-05-04 12:05:52 +02:00
"test": "echo \"no test\"",
2020-07-09 21:10:20 +02:00
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-05-04 20:46:08 +02:00
},
"files": [
"LICENSE",
2020-05-04 21:38:11 +02:00
"*.js",
"*.d.ts"
2020-05-04 20:46:08 +02:00
]
2020-07-09 21:10:20 +02:00
}