occulto/package.json

65 lines
1.4 KiB
JSON
Raw Normal View History

2019-03-30 20:50:04 +01:00
{
"name": "occulto",
2024-02-09 14:32:04 +01:00
"version": "2.0.3",
2019-03-30 20:50:04 +01:00
"description": "crypt utility",
"keywords": [
"isomorphic",
2019-04-08 20:07:17 +02:00
"crypto",
"aes",
"rsa"
2019-03-30 20:50:04 +01:00
],
2024-02-09 14:32:04 +01:00
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/occulto"
},
"license": "MIT",
"author": {
"name": "Niccolo Borgioli",
"email": "opensource@nicco.io",
"url": "https://nicco.io"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
2024-02-09 14:32:04 +01:00
"types": "./dist/index.d.ts",
"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": {
"@endyjasmi/karma-playwright-launcher": "^0.0.4",
2024-02-09 14:32:04 +01:00
"@types/node": "^20.11.17",
"chai": "^4.4.1",
2023-04-25 00:06:36 +02:00
"karma": "^6.4.2",
"karma-mocha": "^2.0.1",
2024-02-09 14:32:04 +01:00
"mocha": "^10.3.0",
"npm-run-all": "^4.1.5",
2024-02-09 14:32:04 +01:00
"playwright": "^1.41.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
2024-02-09 14:32:04 +01:00
"packageManager": "pnpm@8.15.1",
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"pnpm": ">=8",
"yarn": "please-use-pnpm"
}
2019-03-30 20:50:04 +01:00
}