-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
{
"name": "smile-identity-core",
"version": "3.1.0",
"description": "The official Smile Identity Node SDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"lint": "eslint $(git ls-files '*.js' '*.ts') --fix",
"start": "node dist/index.js",
"test": "jest --coverage",
"watch": "tsc --watch"
},
"author": "Chris DeLauder <[email protected]>",
"contributors": [
"Barnabas A Nsoh <[email protected]>",
"Juma Allan <[email protected]>",
"Michael D'Angelo <[email protected]>",
"Solomon Nsubuga <[email protected]>"
],
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"jszip": "^3.10.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"jest-config": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"keypair": "^1.0.4",
"nock": "^13.3.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"directories": {
"test": "test"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smileidentity/smile-identity-core-js.git"
},
"keywords": [
"Smile",
"Identity",
"Javascript"
],
"bugs": {
"url": "https://github.com/smileidentity/smile-identity-core-js/issues"
},
"homepage": "https://github.com/smileidentity/smile-identity-core-js#readme",
"engines": {
"node": ">=v14.0.0"
}
}