-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 918 Bytes
/
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
{
"name": "jscrypt",
"version": "1.0.0",
"description": "Cryptographic modules implemented in JavaScript (I.E. SubtleCrypto API)",
"keywords": [
"Encryption",
"module",
"cryptography",
"JSCrypt"
],
"scripts": {
"test": "eslint --ext .es6 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/JSCrypt.git"
},
"author": {
"name": "Chris Zuber",
"email": "[email protected]",
"url": "https://chriszuber.com"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/shgysk8zer0/JSCrypt/issues"
},
"homepage": "https://github.com/shgysk8zer0/JSCrypt#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.14.1",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^4.0.1",
"webpack": "^2.2.1"
}
}