utilities/package.json
Timo Hocker 1ae21ed665
All checks were successful
continuous-integration/drone/push Build is passing
use jasmine
2020-10-05 20:37:48 +02:00

48 lines
1.2 KiB
JSON

{
"name": "@sapphirecode/utilities",
"version": "1.8.6",
"main": "index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/utilities",
"license": "MIT",
"keywords": [
"utilities",
"regex",
"json",
"filters"
],
"repository": {
"type": "git",
"url": "https://git.scode.ovh:timo/utilities.git"
},
"description": "small utility functions to make much needed features easier to work with",
"devDependencies": {
"@sapphirecode/eslint-config": "^2.1.3",
"@stryker-mutator/core": "^3.2.1",
"@stryker-mutator/jasmine-framework": "^3.3.1",
"@stryker-mutator/jasmine-runner": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^3.2.1",
"@types/jasmine": "^3.5.14",
"eslint": "^7.0.0",
"jasmine": "^3.6.1",
"nyc": "^15.0.1"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "nyc jasmine --config=\"jasmine.json\"",
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
},
"files": [
"LICENSE",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10"
}
}