-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ebclient",
"version": "1.0.2",
"author": {
"name": "Smart Architects",
"email": "[email protected]",
"url": "https://enigmabridge.com/"
},
"description": "Client library for using EnigmaBridge crypto services",
"keywords": [
"encryption",
"HSM",
"middleware",
"enigmabridge"
],
"homepage": "https://github.com/EnigmaBridge/client.js",
"repository": {
"type": "git",
"url": "[email protected]:EnigmaBridge/client.js.git"
},
"contributors": [
{
"name": "Dusan Klinec",
"email": "[email protected]",
"url": "https://enigmabridge.com/"
},
{
"name": "Dan Cvrcek",
"email": "[email protected]",
"url": "https://enigmabridge.com/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EnigmaBridge/client.js/issues"
},
"main": "./lib/enigma.js",
"bin": {
"eb": "./bin/eb.js"
},
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"extend": "^3.0.0",
"jsbn": "^1.1.0",
"sjcl": "^1.0.7",
"superagent": "^3.8.3",
"url": "^0.11.0"
},
"devDependencies": {
"browserify": "latest",
"chai": "latest",
"eslint": "^5.4.0",
"google-closure-compiler": "^20180805.0.0",
"grunt": "*",
"grunt-browserify": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"jshint": "latest",
"minifyify": "latest",
"mocha": "latest",
"publish-please": "^3.2.0",
"rimraf": "^2.6.2",
"shelljs": "^0.7.4",
"watch": "latest"
},
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean -s",
"postbuild": "npm run test",
"postbuild": { "should": "*" },
"build": "build/build.js",
"test": "./node_modules/mocha/bin/mocha",
"lint": "./node_modules/eslint/bin/eslint.js lib test",
"prepublish": "publish-please guard && npm run build",
"publish-please": "publish-please"
},
"_npmUser": {
"name": "smartarcs",
"email": "[email protected]"
},
"maintainers": [
{
"name": "smartarcs",
"email": "[email protected]"
}
]
}