crypto-helper/package.json

30 lines
725 B
JSON
Raw Normal View History

2020-03-04 12:18:11 +01:00
{
"name": "@scode/crypto-helper",
"version": "1.0.0",
"main": "index.js",
"author": "Timo Hocker <t-hocker@web.de>",
"license": "MIT",
"devDependencies": {
2020-04-06 09:18:30 +02:00
"@scode/eslint-config": "^2.0.2",
2020-03-12 09:17:13 +01:00
"@stryker-mutator/core": "^3.0.1",
"@stryker-mutator/javascript-mutator": "^3.0.1",
2020-03-04 12:18:11 +01:00
"ava": "^3.5.0",
"eslint": "^6.8.0",
"nyc": "^15.0.0"
},
"scripts": {
2020-04-14 14:57:47 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-03-04 13:04:05 +01:00
"test": "nyc ava",
2020-03-30 11:57:22 +02:00
"ci": "yarn && node jenkins.js",
2020-05-04 20:38:51 +02:00
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-03-04 13:28:48 +01:00
},
"dependencies": {
"@scode/encoding-helper": "^1.0.1"
2020-05-03 17:00:34 +02:00
},
"files": [
"LICENSE",
"index.js"
]
2020-03-04 13:28:48 +01:00
}