version bump

This commit is contained in:
cupcakearmy 2019-04-08 20:07:17 +02:00
parent 6145c836d8
commit ab645ae0c3

View File

@ -1,28 +1,34 @@
{ {
"name": "occulto", "name": "occulto",
"version": "1.0.3", "version": "1.0.4",
"description": "crypt utility", "description": "crypt utility",
"main": "./lib/index.js", "main": "./lib/index.js",
"types": "./lib/index.d.ts", "types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CupCakeArmy/occulto"
},
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"dev": "tsnd --respawn --no-notify src/index.ts", "dev": "tsnd --respawn --no-notify src/index.ts",
"test": "npm run build && mocha", "test": "npm run build && mocha",
"prepublish": "rm -r ./lib && npm run test" "prepublishOnly": "rm -rf ./lib && npm run test"
}, },
"keywords": [ "keywords": [
"" "crypto",
"chacha20",
"aes",
"rsa",
"high level"
], ],
"author": "Niccolo Borgioli", "author": "Niccolo Borgioli",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@types/node": "^11.12.1", "@types/node": "^11.13.1",
"@types/node-forge": "^0.8.2", "@types/node-forge": "^0.8.2",
"mocha": "^6", "mocha": "^6.1.1",
"ts-node-dev": "^1.0.0-pre.32", "ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3" "typescript": "^3.4.2"
}, },
"dependencies": { "dependencies": {}
"node-forge": "^0.8.2"
}
} }