-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "simple-affiliate",
"version": "0.0.4",
"description": "Library to interact with the simple-affiliate APIs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.js --exit --recursive --reporter spec",
"coverage": "istanbul cover -- _mocha test/*.js --exit --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prpatel05/simple-affiliate.git"
},
"keywords": [
"simple-affiliate",
"affiliate"
],
"author": "Pratik Patel <prpatel05@gmail.com> (https://pratikpatel.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prpatel05/simple-affiliate/issues"
},
"homepage": "https://github.com/prpatel05/simple-affiliate#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"istanbul": "^0.4.5",
"mocha": "^7.2.0",
"proxyquire": "^2.1.3",
"test-console": "^1.1.0"
}
}