-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "stitch-api-client",
"version": "0.0.2",
"description": "A simple Stitch API client library for node",
"keywords": ["stitch", "client", "api", "push"],
"homepage": "https://github.com/ealanisg/stitch-api-client",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test-simple": "nyc mocha \"./test/**/*.spec.js\"",
"test": "yarn run lint && yarn run test-simple",
"t": "yarn test",
"ts": "yarn run test-simple",
"tsv": "yarn run test-simple --verbose"
},
"author": "Ezequiel Alanis <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "0.21.1",
"joi": "17.4.0"
},
"nyc": {
"tempDir": "./coverage/.nyc_output",
"report-dir": "./coverage",
"check-coverage": true,
"per-file": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"extension": [],
"cache": true,
"all": true,
"babel": true,
"exclude": [
"node_modules/*",
"coverage/*",
"lib/*"
]
},
"devDependencies": {
"@babel/register": "7.13.14",
"chai": "4.3.4",
"eslint": "7.24.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-markdown": "2.0.1",
"eslint-plugin-mocha": "8.1.0",
"mocha": "8.3.2",
"node-tdd": "3.0.4",
"nyc": "15.1.0"
}
}