utilities/package.json

45 lines
1.0 KiB
JSON
Raw Normal View History

2020-03-04 12:13:28 +01:00
{
2020-05-05 19:24:19 +02:00
"name": "@sapphirecode/utilities",
2020-07-19 14:28:38 +02:00
"version": "1.8.4",
2020-03-04 12:13:28 +01:00
"main": "index.js",
2020-07-19 14:28:38 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/utilities",
2020-03-04 12:13:28 +01:00
"license": "MIT",
"keywords": [
"utilities",
"regex",
2020-07-19 14:28:38 +02:00
"json",
"filters"
],
"repository": {
"type": "git",
2020-07-19 14:28:38 +02:00
"url": "https://git.scode.ovh:timo/utilities.git"
},
"description": "small utility functions to make much needed features easier to work with",
2020-03-04 12:13:28 +01:00
"devDependencies": {
"@sapphirecode/eslint-config": "^2.1.3",
"@stryker-mutator/core": "^3.2.1",
"@stryker-mutator/javascript-mutator": "^3.2.1",
"ava": "^3.8.2",
"eslint": "^7.0.0",
"nyc": "^15.0.1"
2020-03-04 12:13:28 +01:00
},
"scripts": {
2020-04-14 14:58:27 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-03-04 13:02:46 +01:00
"test": "nyc ava",
2020-05-04 20:35:17 +02:00
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-05-03 16:59:11 +02:00
},
"files": [
"LICENSE",
"index.js",
"index.d.ts"
2020-06-29 11:30:16 +02:00
],
"engines": {
"node": ">=10"
}
2020-07-19 14:28:38 +02:00
}