forked from asmcrypto/asmcrypto.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "asmcrypto.js",
"description": "Asm.js implementation of WebCrypto API",
"homepage": "https://github.com/vibornoff/asmcrypto.js",
"main": "asmcrypto.js",
"license": "MIT",
"author": {
"name": "Artem S Vybornov",
"email": "vybornov@gmail.com",
"web": "https://github.com/vibornoff"
},
"contributors": [
{
"name": "Ádám Lippai",
"email": "adam@rigo.sk",
"web": "https://github.com/alippai"
},
{
"name": "Ximin Luo",
"email": "infinity0@pwned.gg",
"web": "https://github.com/infinity0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vibornoff/asmcrypto.js.git"
},
"devDependencies": {
"uglify-js": "vibornoff/UglifyJS2",
"grunt": "~0.4",
"grunt-cli": "~0.1",
"grunt-contrib-uglify": "~0.9",
"grunt-contrib-concat": "~0.5",
"grunt-contrib-qunit": "~0.4",
"grunt-contrib-connect": "~0.7",
"grunt-contrib-watch": "~0.2",
"grunt-contrib-clean": "~0.4",
"grunt-saucelabs": "~8.0",
"grunt-jsdoc": "~0.6"
},
"engines": {
"node": "~0.10"
},
"scripts": {
"prepublish": "grunt",
"test": "grunt test"
}
}