forked from phpmycoder/cryptico-node
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "cryptico-js",
"version": "2.0.0-alpha0",
"description": "Encryption/Decryption Library (AES/RSA, based on Cryptico)",
"main": "./lib/cryptico.js",
"scripts": {
"postinstall": "npm dedupe",
"start": "gulp",
"build": "gulp",
"publish-major": "npm run build && git commit -am pre-publish-build && npm version major && npm publish && git push origin master && git push origin master --tags",
"publish-minor": "npm run build && git commit -am pre-publish-build && npm version minor && npm publish && git push origin master && git push origin master --tags",
"publish-patch": "npm run build && git commit -am pre-publish-build && npm version patch && npm publish && git push origin master && git push origin master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/tracker1/cryptico-js.git"
},
"author": "Michael J. Ryan <tracker1@gmail.com>",
"license": "ISC",
"contributors": [
{
"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"
],
"bugs": {
"url": "https://github.com/tracker1/cryptico-js/issues"
},
"homepage": "https://github.com/tracker1/cryptico-js",
"devDependencies": {
"gulp": "^3.8.6",
"gulp-browserify": "^0.5.0",
"gulp-concat": "^2.3.4",
"gulp-header": "^1.0.5",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^0.3.1"
}
}