-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "beccaccino",
"version": "2.1.0",
"description": "Easy, reliable and fast http client for redux, framework agnostic, :zap: like a beccaccino",
"main": "dist/beccaccino-node.js",
"browser": "dist/beccaccino.js",
"author": "Extendi <info@extendi.it>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "yarn build:production",
"build:development": "NODE_ENV=development yarn run webpack --progress --mode development",
"build:production": "rm -rf ./dist/ && NODE_ENV=production yarn run webpack --progress --env.production",
"test": "yarn run jest --coverage --coverageReporters=text-lcov | coveralls",
"test-local": "yarn run jest --coverage"
},
"files": [
"dist"
],
"keywords": [
"redux",
"axios",
"http",
"client",
"request",
"react",
"vue",
"angular"
],
"repository": {
"type": "git",
"url": "https://github.com/extendi/beccaccino"
},
"typings": "./dist/index.d.ts",
"peerDependencies": {
"axios": "^0.18.0",
"redux": "^4.0.1"
},
"devDependencies": {
"@types/jest": "23.3.10",
"@types/uuid": "^3.4.4",
"awesome-typescript-loader": "^5.2.1",
"coveralls": "^3.0.2",
"jest": "23.6.0",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^1.2.2",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"axios": "^0.18.0",
"path-to-regexp": "^3.0.0",
"redux": "^4.0.1",
"uuid": "^3.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^@lib/(.*)$": "<rootDir>/src/$1"
},
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}