-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 806 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 806 Bytes
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
{
"name": "node-ice",
"description": "NodeJS Information Concealment Engine (ICE) algorithm",
"version": "1.1.1",
"homepage": "https://github.com/DSergiu/node-ice",
"author": {
"name": "Danalachi Sergiu",
"url": "https://github.com/DSergiu"
},
"repository": {
"type": "git",
"url": "https://github.com/DSergiu/node-ice.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"example": "ts-node src/example.ts"
},
"main": "dist/IceKey.js",
"private": false,
"engines": {
"node": ">=6.9.0 <7.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^8.0.9",
"ts-node": "^3.1.0",
"typescript": "^2.3.2"
},
"keywords": [
"Information Concealment Engine",
"ICE",
"decrypt",
"entsccrypt",
"security"
]
}