2021-11-03 15:35:57 -04:00
|
|
|
{
|
|
|
|
"name": "cryptalk",
|
2022-03-29 18:45:02 -04:00
|
|
|
"version": "1.2.9",
|
2021-11-03 15:35:57 -04:00
|
|
|
"description": "Encrypted HTML5/Node.JS instant chat",
|
|
|
|
"main": "server/server.js",
|
|
|
|
"preferGlobal": true,
|
|
|
|
"private": false,
|
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"No tests written yet\" && exit 0",
|
2021-11-07 07:52:45 -05:00
|
|
|
"build": "npm update && npm outdated && npm run test:lint && npx rollup -c rollup.config.js && npm run build:minify && npm run build:cleanup",
|
|
|
|
"build:ci": "npm run test:lint && npx rollup -c rollup.config.js && npm run build:minify && npm run build:cleanup",
|
2021-11-03 15:35:57 -04:00
|
|
|
"build:minify": "uglifyjs client/public/js/cryptalk.js --source-map -o client/public/js/cryptalk.min.js",
|
|
|
|
"build:cleanup": "(rm client/public/js/cryptalk.js || del client\\public\\js\\cryptalk.js)",
|
|
|
|
"test:lint": "eslint ./client/source/**/*.js ./server/*.js",
|
2021-11-03 16:17:16 -04:00
|
|
|
"start": "node ./server/server.js"
|
2021-11-03 15:35:57 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"cryptalk",
|
2021-11-03 15:57:54 -04:00
|
|
|
"chat",
|
2021-11-03 15:35:57 -04:00
|
|
|
"crypto-js",
|
|
|
|
"AES",
|
|
|
|
"secure",
|
|
|
|
"html5",
|
|
|
|
"encryption",
|
2021-11-03 15:57:54 -04:00
|
|
|
"privacy",
|
|
|
|
"e2ee"
|
2021-11-03 15:35:57 -04:00
|
|
|
],
|
|
|
|
"author": "Hexagon <Hexagon@GitHub>",
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Pehr Boman",
|
|
|
|
"email": "unkelpehr@gmail.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/Hexagon/cryptalk.git"
|
|
|
|
},
|
2021-11-03 15:57:54 -04:00
|
|
|
"bin": "./server/server.js",
|
2021-11-03 15:35:57 -04:00
|
|
|
"dependencies": {
|
2021-11-07 07:52:45 -05:00
|
|
|
"serve": "^13.0.2",
|
2021-11-03 15:35:57 -04:00
|
|
|
"socket.io": "^4.3.1"
|
|
|
|
},
|
|
|
|
"os": [
|
|
|
|
"darwin",
|
|
|
|
"linux",
|
|
|
|
"win32"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2023-01-23 09:01:00 -05:00
|
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
2021-11-03 15:35:57 -04:00
|
|
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
|
|
"crypto-js": "^4.1.1",
|
|
|
|
"eslint": "^8.1.0",
|
|
|
|
"rollup": "^2.59.0",
|
|
|
|
"uglify-js": "^3.14.3"
|
|
|
|
}
|
|
|
|
}
|