28 lines
695 B
JSON
28 lines
695 B
JSON
{
|
|
"name": "@sapphirecode/encoding-helper",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"author": "Timo Hocker <t-hocker@web.de>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@sapphirecode/eslint-config": "^2.0.2",
|
|
"@stryker-mutator/core": "^3.0.2",
|
|
"@stryker-mutator/javascript-mutator": "^3.0.2",
|
|
"ava": "^3.5.0",
|
|
"eslint": "^6.8.0",
|
|
"nyc": "^15.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
|
|
"test": "nyc ava",
|
|
"ci": "yarn && node jenkins.js",
|
|
"mutate": "stryker run",
|
|
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"index.js",
|
|
"index.d.ts"
|
|
]
|
|
}
|