This repository was archived by the owner on Oct 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.48 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@fmal/http-service",
"version": "1.0.1",
"description": "A HTTP service - orignally @cerebral/http",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"/lib",
"/src",
"/esm",
"/factories",
"!**/__tests__"
],
"repository": {
"type": "git",
"url": "https://github.com/fmal/http-service.git"
},
"keywords": [
"cerebral",
"cerebraljs",
"http"
],
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"contributors": [
"Filip Malinowski <filip@fmal.me>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fmal/http-service/issues"
},
"homepage": "https://github.com/fmal/http-service#readme",
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-add-module-exports": "1.0.0",
"cerebral": "5.0.2",
"cross-env": "5.2.0",
"eslint": "5.9.0",
"eslint-config-fmal": "5.0.0",
"eslint-plugin-jest": "22.1.0",
"husky": "1.2.0",
"jest": "23.6.0",
"lint-staged": "8.1.0",
"npm-check": "5.9.0",
"npm-run-all": "4.1.5",
"prettier": "1.15.2",
"standard-version": "4.4.0",
"xhr-mock": "2.4.1"
},
"scripts": {
"clean": "rimraf lib esm",
"build:esm": "cross-env BABEL_ENV=esm babel src/ -d esm/ --copy-files",
"build:cjs": "cross-env BABEL_ENV=cjs babel src/ -d lib/ --copy-files",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production run-p build:*",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm test -- --runInBand --ci",
"lint": "eslint . --ignore-path .gitignore --cache --fix",
"format": "prettier --write \"**/*.{md,json,d.ts,yaml}\"",
"prerelease": "npm test",
"release": "standard-version",
"release:dry": "standard-version --dry-run",
"prepublishOnly": "npm run build",
"deps": "npm-check -u"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{md,json,d.ts,yaml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}