encoding-helper/package.json

40 lines
1022 B
JSON
Raw Normal View History

2020-03-04 12:15:08 +01:00
{
2020-05-05 19:22:28 +02:00
"name": "@sapphirecode/encoding-helper",
2020-10-12 17:53:57 +02:00
"version": "1.0.51",
2020-03-04 12:15:08 +01:00
"main": "index.js",
2020-07-19 14:21:36 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/encoding-helper",
2020-05-15 16:08:01 +02:00
"description": "Converting strings between different encodings",
"repository": {
"type": "git",
2020-07-19 14:21:36 +02:00
"url": "https://git.scode.ovh:timo/encoding-helper.git"
2020-05-15 16:08:01 +02:00
},
"keywords": [
"encoding"
],
2020-03-04 12:15:08 +01:00
"license": "MIT",
"devDependencies": {
2020-05-15 16:08:01 +02:00
"@sapphirecode/eslint-config": "^2.1.4",
2020-10-12 17:53:57 +02:00
"@stryker-mutator/core": "^4.0.0",
"@stryker-mutator/jasmine-runner": "^4.0.0",
2020-10-04 17:56:52 +02:00
"@types/jasmine": "^3.5.14",
2020-05-15 16:08:01 +02:00
"eslint": "^7.0.0",
2020-10-04 17:56:52 +02:00
"jasmine": "^3.6.1",
2020-05-15 16:08:01 +02:00
"nyc": "^15.0.1"
2020-03-04 12:15:08 +01:00
},
"scripts": {
2020-04-14 14:57:24 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-10-04 17:56:52 +02:00
"test": "nyc jasmine --config=\"jasmine.json\"",
2020-05-04 20:36:02 +02:00
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-05-03 16:59:53 +02:00
},
"files": [
"LICENSE",
"index.js",
"index.d.ts"
]
2020-10-04 17:56:52 +02:00
}