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",
|
2020-05-15 12:18:37 +02:00
|
|
|
"keywords": [
|
|
|
|
"utilities",
|
|
|
|
"regex",
|
2020-07-19 14:28:38 +02:00
|
|
|
"json",
|
|
|
|
"filters"
|
2020-05-15 12:18:37 +02:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-07-19 14:28:38 +02:00
|
|
|
"url": "https://git.scode.ovh:timo/utilities.git"
|
2020-05-15 12:18:37 +02:00
|
|
|
},
|
|
|
|
"description": "small utility functions to make much needed features easier to work with",
|
2020-03-04 12:13:28 +01:00
|
|
|
"devDependencies": {
|
2020-05-15 12:18:37 +02:00
|
|
|
"@sapphirecode/eslint-config": "^2.1.3",
|
2020-10-12 17:28:00 +02:00
|
|
|
"@stryker-mutator/core": "^4.0.0",
|
|
|
|
"@stryker-mutator/jasmine-runner": "^4.0.0",
|
2020-10-05 20:37:48 +02:00
|
|
|
"@types/jasmine": "^3.5.14",
|
2020-05-15 12:18:37 +02:00
|
|
|
"eslint": "^7.0.0",
|
2020-10-05 20:37:48 +02:00
|
|
|
"jasmine": "^3.6.1",
|
2020-05-15 12:18:37 +02:00
|
|
|
"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
|
|
|
}
|