2020-03-04 12:13:28 +01:00
|
|
|
{
|
2020-05-05 19:24:19 +02:00
|
|
|
"name": "@sapphirecode/utilities",
|
2020-07-19 11:59:35 +02:00
|
|
|
"version": "1.8.5",
|
2020-03-04 12:13:28 +01:00
|
|
|
"main": "index.js",
|
2020-05-15 12:18:37 +02:00
|
|
|
"author": "Timo Hocker <timo@scode.ovh>",
|
2020-03-04 12:13:28 +01:00
|
|
|
"license": "MIT",
|
2020-05-15 12:18:37 +02:00
|
|
|
"keywords": [
|
|
|
|
"utilities",
|
|
|
|
"regex",
|
|
|
|
"json"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@git.scode.ovh:timo/utilities"
|
|
|
|
},
|
|
|
|
"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",
|
|
|
|
"@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-10 12:20:12 +02:00
|
|
|
}
|