-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "subtle",
"version": "0.1.8",
"description": "crypto.subtle for node.js",
"main": "src/main.js",
"scripts": {
"install": "./install.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"crypto",
"crypto.subtle",
"async",
"promise"
],
"browser": {
"./src/use_node.js": "./src/use_browser.js",
"node-forge": "./src/forgeless.js",
"./src/node/algorithms/shared/ecc.node.js": "./src/node/algorithms/shared/ecc.browser.js"
},
"author": "Ryan Bennett",
"license": "MIT",
"homepage": "https://github.com/rynomad/subtle",
"repository": {
"type": "git",
"url": "https://github.com/rynomad/subtle.git"
},
"dependencies": {
"ecc-jsbn": "0.0.1",
"node-forge": "^0.6.20",
"polyfill-promise": "^4.0.1",
"sjcl": "^1.0.3"
},
"optionalDependencies":{
"ecc-qj" : "git+https://github.com/rynomad/ecc.git"
},
"devDependencies": {
"glob": "^5.0.14",
"gulp": "^3.9.0",
"gulp-jsdoc": "^0.1.4",
"gulp-mocha": "^2.1.3",
"gulp-watch": "^4.3.2",
"plato": "^1.5.0"
}
}