-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 994 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
38
{
"name": "@decent-bet/crypto-evpkdf",
"version": "1.0.1",
"description": "Extracted EVP KDF module from CryptoJS",
"main": "lib/index.js",
"scripts": {
"start:ts": "ts-node src/index.ts",
"test": "jest --watch",
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts"
},
"author": "Rogelio Morrel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:decent-bet/crypto-evpkdf.git"
},
"homepage": "https://github.com/decent-bet/crypto-evpkdf",
"keywords": [
"decent-bet",
"crypto-js",
"evpkdf"
],
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.10",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"@trust/webcrypto": "^0.9.2",
"crypto-js": "^3.1.9-1",
"fast-text-encoding": "^1.0.0"
}
}