-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cs2-encryption",
"version": "1.0.4",
"author": {
"name": "Matthew Wall",
"email": "matthew.wallt@gmail.com",
"url": "https://twitter.com/Mattwall7"
},
"description": "NodeJS Typescript implementation of cybersource v2 encryption",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index",
"files": ["/lib"],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/walmat/cs-encryption-v2.git"
},
"bugs": {
"url": "https://github.com/walmat/cs-encryption-v2/issues"
},
"scripts": {
"test": "jest",
"test:cover": "jest --collectCoverage",
"test:watch": "jest --watchAll",
"prepublish": "yarn build",
"build": "tsc",
"docs": "typedoc src"
},
"keywords": [
"typescript",
"cybersource",
"encryption",
"pokemon"
],
"dependencies": {
"@peculiar/webcrypto": "^1.1.3",
"btoa": "^1.2.1",
"jwt-decode": "^3.1.1"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.6",
"coveralls": "^3.1.0",
"dot-json": "^1.2.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.3",
"ts-node": "9.0.0",
"ts-node-dev": "1.0.0",
"tslint": "^6.1.3",
"typedoc": "0.19.2",
"typedoc-plugin-external-module-name": "4.0.3",
"typescript": "^4.0.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
]
}
}