occulto/package.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2019-03-30 19:50:04 +00:00
{
"name": "occulto",
2022-10-18 13:36:28 +00:00
"version": "2.0.0-rc.6",
2019-03-30 19:50:04 +00:00
"description": "crypt utility",
2019-04-08 18:07:17 +00:00
"repository": {
"type": "git",
"url": "https://github.com/CupCakeArmy/occulto"
},
2019-03-30 19:50:04 +00:00
"keywords": [
2022-10-18 13:18:00 +00:00
"isomorphic",
2019-04-08 18:07:17 +00:00
"crypto",
"aes",
2022-10-18 13:18:00 +00:00
"rsa"
2019-03-30 19:50:04 +00:00
],
"author": "Niccolo Borgioli",
"license": "MIT",
2022-10-14 11:17:22 +00:00
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": "7"
},
2022-10-13 20:06:51 +00:00
"type": "module",
2022-10-18 13:48:27 +00:00
"types": "./dist/index.d.ts",
2022-10-13 20:06:51 +00:00
"exports": {
".": {
2022-10-18 13:48:27 +00:00
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
2022-10-13 20:06:51 +00:00
}
2019-03-30 19:50:04 +00:00
},
2022-10-14 11:17:22 +00:00
"files": [
"dist"
],
2022-10-13 20:06:51 +00:00
"scripts": {
"docs": "typedoc",
"test:node": "mocha",
2022-10-16 00:45:17 +00:00
"test:browser": "karma start .karma.cjs --single-run",
2022-10-13 20:06:51 +00:00
"test": "run-s build test:*",
2022-10-18 13:48:27 +00:00
"build": "tsc",
2022-10-16 00:45:17 +00:00
"clean": "rm -rf ./dist",
"dev": "run-p -ln dev:*",
2022-10-18 13:48:27 +00:00
"dev:build": "tsc -w",
2022-10-16 00:45:17 +00:00
"dev:test:node": "mocha --parallel --watch",
2022-10-18 12:09:53 +00:00
"dev:test:browser": "karma start .karma.cjs",
"prepublishOnly": "run-s clean build"
2022-10-13 20:06:51 +00:00
},
"devDependencies": {
2022-10-18 12:07:36 +00:00
"@endyjasmi/karma-playwright-launcher": "^0.0.4",
"@types/node": "^16.11.66",
2022-10-13 20:06:51 +00:00
"chai": "^4.3.6",
"karma": "^6.4.1",
"karma-mocha": "^2.0.1",
2022-10-18 12:07:36 +00:00
"mocha": "^10.1.0",
2022-10-13 20:06:51 +00:00
"npm-run-all": "^4.1.5",
2022-10-16 00:45:17 +00:00
"playwright": "^1.27.1",
2022-10-18 12:07:36 +00:00
"typedoc": "^0.23.17",
2022-10-13 20:06:51 +00:00
"typescript": "^4.8.4"
}
2019-03-30 19:50:04 +00:00
}