occulto/package.json

64 lines
1.4 KiB
JSON
Raw Normal View History

2019-03-30 20:50:04 +01:00
{
"name": "occulto",
2022-10-18 16:20:41 +02:00
"version": "2.0.0-rc.9",
"license": "MIT",
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
],
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": "7"
},
"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": {
"@endyjasmi/karma-playwright-launcher": "^0.0.4",
"@types/node": "^16.11.66",
"chai": "^4.3.6",
"karma": "^6.4.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.27.1",
"typedoc": "^0.23.17",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/occulto"
2019-03-30 20:50:04 +01:00
},
"author": {
"name": "Niccolo Borgioli",
"email": "opensource@nicco.io",
"url": "https://nicco.io"
}
2019-03-30 20:50:04 +01:00
}