-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.65 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
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
{
"name": "crest-js",
"version": "1.1.0",
"description": "Javascript client for REST APIs",
"main": "./src/index.js",
"scripts": {
"test": "eslint . && mocha test/"
},
"repository": {
"type": "git",
"url": "git@github.com:MihaiBalint/crest-js.git"
},
"keywords": [
"rest",
"client",
"api",
"sdk",
"http"
],
"author": "Mihai Balint",
"license": "MIT",
"homepage": "https://github.com/MihaiBalint/crest-js",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"axios": "^0.18.0",
"chai": "^4.2.0",
"commitizen": "^3.0.4",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"cz-customizable": "^5.2.0",
"dotenv": "^6.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"http-server": "^0.11.1",
"husky": "^1.1.3",
"if-env": "^1.0.4",
"mocha": "^5.2.0",
"mockttp": "^0.12.4",
"npm-scripts-info": "^0.3.9",
"nyc": "^13.1.0",
"semantic-release": "^15.10.8",
"travis-deploy-once": "^5.0.9"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"require": [],
"extension": [],
"cache": true,
"all": true,
"temp-dir": "",
"report-dir": "./.coverage"
},
"dependencies": {
"querystring": "^0.2.0"
}
}