-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.06 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
{
"name": "fdk-billing-javascript",
"version": "0.0.1",
"description": "Fynd Development Kit library to enable easy billing integration for your extension",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nyc node spec.js"
},
"nyc": {
"all": true,
"check-coverage": false,
"collectCoverage": true,
"include": [
"**/*.js"
],
"exclude": [
"spec/*",
"node_modules/*",
"coverage/*",
"spec.js",
"models/base-models/*"
],
"reporter": [
"html",
"json",
"json-summary",
"text-summary"
],
"report-dir": "./coverage"
},
"keywords": [
"billing",
"fynd",
"subscription",
"extension"
],
"author": "regrowth@gofynd.com",
"license": "ISC",
"dependencies": {
"deep-extend": "^0.6.0",
"joi": "^17.4.2"
},
"peerDependencies": {
"mongoose": ">=6.13.8"
},
"devDependencies": {
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"mongoose": "^6.13.8",
"nyc": "^15.0.1",
"winston": "^3.2.1"
}
}