consts/package.json

37 lines
846 B
JSON
Raw Normal View History

2020-03-04 13:49:20 +01:00
{
2020-05-05 19:22:02 +02:00
"name": "@sapphirecode/consts",
2021-01-15 19:38:14 +01:00
"version": "1.2.2",
2020-03-04 13:49:20 +01:00
"main": "index.js",
2020-07-19 14:09:47 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/consts",
2020-03-04 13:49:20 +01:00
"license": "MIT",
2020-05-15 12:40:05 +02:00
"repository": {
"type": "git",
2020-07-19 14:09:47 +02:00
"url": "https://git.scode.ovh:timo/consts.git"
2020-05-15 12:40:05 +02:00
},
"description": "useful constant values that are used in many applications",
2020-03-04 13:49:20 +01:00
"devDependencies": {
2020-05-15 12:40:05 +02:00
"@sapphirecode/eslint-config": "^2.1.3",
"eslint": "^7.0.0"
2020-03-04 13:49:20 +01:00
},
"scripts": {
2020-04-14 14:58:42 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-03-04 13:49:20 +01:00
"test": "echo \"no test\"",
2020-05-04 20:38:40 +02:00
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-04-09 11:55:57 +02:00
},
"engines": {
"node": ">=10.0.0"
2020-05-03 17:02:29 +02:00
},
"files": [
"LICENSE",
2021-01-15 17:38:49 +01:00
"*.d.ts",
2020-12-02 15:59:54 +01:00
"*.js"
2020-07-19 14:09:47 +02:00
],
"keywords": [
"constants",
"http status code"
2020-05-03 17:02:29 +02:00
]
}