forked from tracker1/cryptico-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@daotl/cryptico",
"version": "2.0.0",
"description": "Encryption/Decryption Library (AES/RSA, based on Cryptico)",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"browser": "cryptico.iife.js",
"scripts": {
"build": "shx rm -rf dist && npm run build:native && npm run build:node",
"build:native": "shx rm -rf dist/native && rollup -c rollup.config.js && shx cp dist/index.d.ts dist/native/ && shx cp package.json dist/native && shx cp README.md dist/native",
"build:node": "shx rm -rf dist/node && rollup -c rollup.config.js --environment NODEJS && shx cp dist/index.d.ts dist/node/ && shx cp package.json dist/node && rjp dist/node/package.json name @daotl/cryptico-node && shx cp README.md dist/node",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"pub": "npm run lint && npm run pub:native && npm run pub:node",
"pub:native": "cd dist/native && npm publish --access public && cd ../..",
"pub:node": "cd dist/node && npm publish --access public && cd ../.."
},
"prettier": "@daotl/prettier-config",
"repository": {
"type": "git",
"url": "https://github.com/crpt/cryptico.git"
},
"author": "Nex Zhu <hitnexup@gmail.com>",
"license": "MIT",
"contributors": [
{
"name": "Michael J. Ryan",
"email": "tracker1@gmail.com"
},
{
"name": "Rye Terrell",
"email": "ryeterrell@ryeterrell.net"
},
{
"name": "Roberto Aguilar",
"email": "roberto@baremetal.io"
},
{
"name": "PhpMyCoder"
}
],
"keywords": [
"encryption",
"cryptography",
"public-key",
"private-key",
"AES",
"RSA",
"TypeScript"
],
"bugs": {
"url": "https://github.com/crpt/cryptico/issues"
},
"homepage": "https://github.com/crpt/cryptico",
"devDependencies": {
"@daotl/eslint-config": "^0.1.1",
"@types/node": "^15.6.1",
"replace-json-property": "^1.6.3",
"rollup": "^2.51.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"shx": "^0.3.3",
"sucrase": "^3.18.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}