utilities/package.json

46 lines
1.1 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-11-05 07:50:27 +01:00
"version": "1.8.8",
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",
2021-05-24 14:54:51 +02:00
"@stryker-mutator/core": "^5.0.0",
"@stryker-mutator/jasmine-runner": "^5.0.0",
2020-10-05 20:37:48 +02:00
"@types/jasmine": "^3.5.14",
"eslint": "^7.0.0",
2020-10-05 20:37:48 +02:00
"jasmine": "^3.6.1",
"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-10-05 20:37:48 +02:00
"test": "nyc jasmine --config=\"jasmine.json\"",
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",
2020-11-05 07:50:27 +01:00
"*.js",
"*.d.ts"
2020-06-29 11:30:16 +02:00
],
"engines": {
"node": ">=10"
}
2020-10-05 20:37:48 +02:00
}