2019-03-30 20:50:04 +01:00
|
|
|
{
|
|
|
|
"name": "occulto",
|
2023-05-16 10:30:12 +02:00
|
|
|
"version": "2.0.2",
|
2023-05-16 10:28:44 +02:00
|
|
|
"packageManager": "pnpm@8.4.0",
|
2022-10-18 15:53:43 +02:00
|
|
|
"license": "MIT",
|
2019-03-30 20:50:04 +01:00
|
|
|
"description": "crypt utility",
|
|
|
|
"keywords": [
|
2022-10-18 15:53:43 +02:00
|
|
|
"isomorphic",
|
2019-04-08 20:07:17 +02:00
|
|
|
"crypto",
|
|
|
|
"aes",
|
2022-10-18 15:53:43 +02:00
|
|
|
"rsa"
|
2019-03-30 20:50:04 +01:00
|
|
|
],
|
2022-10-18 15:53:43 +02:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16",
|
|
|
|
"npm": "please-use-pnpm",
|
|
|
|
"yarn": "please-use-pnpm",
|
2023-04-25 00:06:36 +02:00
|
|
|
"pnpm": ">=8"
|
2022-10-18 15:53:43 +02:00
|
|
|
},
|
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"docs": "typedoc",
|
|
|
|
"test:node": "mocha",
|
|
|
|
"test:browser": "karma start .karma.cjs --single-run",
|
|
|
|
"test": "run-s build test:*",
|
|
|
|
"build": "tsc",
|
|
|
|
"clean": "rm -rf ./dist",
|
|
|
|
"dev": "run-p -ln dev:*",
|
|
|
|
"dev:build": "tsc -w",
|
|
|
|
"dev:test:node": "mocha --parallel --watch",
|
|
|
|
"dev:test:browser": "karma start .karma.cjs",
|
|
|
|
"prepublishOnly": "run-s clean build"
|
|
|
|
},
|
2019-03-30 20:50:04 +01:00
|
|
|
"devDependencies": {
|
2022-10-18 15:53:43 +02:00
|
|
|
"@endyjasmi/karma-playwright-launcher": "^0.0.4",
|
2023-05-16 10:28:44 +02:00
|
|
|
"@types/node": "^20.1.5",
|
2023-01-13 20:42:36 +01:00
|
|
|
"chai": "^4.3.7",
|
2023-04-25 00:06:36 +02:00
|
|
|
"karma": "^6.4.2",
|
2022-10-18 15:53:43 +02:00
|
|
|
"karma-mocha": "^2.0.1",
|
2023-01-13 20:42:36 +01:00
|
|
|
"mocha": "^10.2.0",
|
2022-10-18 15:53:43 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-04-27 22:30:22 +02:00
|
|
|
"playwright": "^1.33.0",
|
2023-05-16 10:28:44 +02:00
|
|
|
"typedoc": "^0.24.7",
|
2023-04-25 00:06:36 +02:00
|
|
|
"typescript": "^5.0.4"
|
2022-10-18 15:53:43 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/cupcakearmy/occulto"
|
2019-03-30 20:50:04 +01:00
|
|
|
},
|
2022-10-18 15:53:43 +02:00
|
|
|
"author": {
|
|
|
|
"name": "Niccolo Borgioli",
|
|
|
|
"email": "opensource@nicco.io",
|
|
|
|
"url": "https://nicco.io"
|
|
|
|
}
|
2019-03-30 20:50:04 +01:00
|
|
|
}
|