-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "apl-web-crypto",
"version": "1.0.29",
"description": "JS implementation of APL Crypto",
"private": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"prepublishOnly": "yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"First Bridge",
"Crypto"
],
"author": "Ellina Kolisnichenko",
"license": "ISC",
"devDependencies": {
"fs": "0.0.2",
"jest": "26.1.0",
"prettier": "2.0.5",
"replace-in-file": "6.1.0",
"ts-jest": "26.1.3",
"tslint": "6.1.2",
"typescript": "3.9.7"
},
"files": [
"lib/**/*"
],
"moduleDirectories": [
"node_modules"
],
"dependencies": {
"@types/crypto-js": "3.1.47",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "26.0.7",
"@types/jsbn": "^1.2.29",
"@types/node": "14.0.25",
"@types/pvutils": "0.0.2",
"@types/request": "2.48.5",
"buffer": "^6.0.3",
"crypto-js": "4.0.0",
"isomorphic-fetch": "2.2.1",
"js-sha256": "0.9.0",
"jsbn": "1.1.0",
"pako": "1.0.11",
"pvutils": "1.0.17",
"request": "2.88.2"
},
"directories": {
"lib": "lib"
}
}