-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "easy-nodecrypt",
"version": "0.2.2",
"description": "A simple nodejs library that makes life easier when you want to encrypt and decrypt string to multiple encodings.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run clean && npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"easy",
"simple",
"simply",
"encrypt",
"decrypt",
"nodejs",
"node",
"typescript"
],
"author": "Guillaume Quittet <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/gquittet/easy-nodecrypt#readme",
"bugs": {
"url": "https://github.com/gquittet/easy-nodecrypt/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:gquittet/easy-nodecrypt.git"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/node": "^12.0.4",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.1"
}
}