-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 1.8 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
76
77
78
79
80
81
{
"dependencies": {
"axios": "^1.6.4",
"crypto-js": "^4.2.0",
"querystring": "^0.2.1",
"url-join": "^4.0.1",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@gofynd/fdk-client-javascript": "^1.4.13",
"axios-mock-adapter": "^1.18.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"ioredis": "^4.24.2",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"jshint": "^2.12.0",
"ngrok": "^3.4.0",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"nyc": {
"all": true,
"check-coverage": false,
"collectCoverage": true,
"include": [
"**/*.js"
],
"exclude": [
"spec/*",
"node_modules/*",
"tools/*",
"load-test/*",
"backup/*",
"migration/*",
"coverage/*",
"run_migration.js",
"build/*",
"dist/*",
"examples/*"
],
"reporter": [
"html",
"json",
"json-summary",
"text-summary"
],
"report-dir": "./coverage"
},
"peerDependencies": {
"@gofynd/fdk-client-javascript": "^1.4.13"
},
"name": "@gofynd/fdk-extension-javascript",
"description": "FDK Extension Helper Library",
"version": "0.7.12",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "./node_modules/.bin/nyc node spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gofynd/fdk-extension-javascript.git"
},
"keywords": [
"fdk",
"fdk-extension-javascript"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/gofynd/fdk-extension-javascript/issues"
},
"homepage": "https://github.com/gofynd/fdk-extension-javascript#readme"
}