-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.54 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
88
89
90
91
{
"name": "bim-fetch",
"version": "3.1.0",
"description": "Yet another attempt at bringing an efficient and small fetch wrapper",
"main": "dist/BimFetch.js",
"types": "dist/BimFetch.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint --quiet src/**",
"prepublishOnly": "npm run build",
"build": "rimraf dist && yarn build:bundle && yarn build:types",
"type-check": "tsc --noEmit",
"build:bundle": "rollup -c",
"build:types": "tsc --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorentinAndre/bim-fetch.git"
},
"keywords": [
"fetch",
"javascrip",
"es6",
"es7",
"async",
"await"
],
"author": "Corentin André <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CorentinAndre/bim-fetch/issues"
},
"homepage": "https://github.com/CorentinAndre/bim-fetch#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.1.5",
"@ornikar/eslint-config": "^5.2.0",
"@ornikar/jest-config": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-unicorn": "^6.0.1",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"prettier-eslint": "^8.8.2",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript": "^1.0.0",
"tslib": "^1.9.3",
"typescript": "^3.1.6",
"uglify-js": "^3.3.9"
},
"dependencies": {
"@types/jest": "^23.3.9",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"preset": "@ornikar/jest-config",
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts)$": "<rootDir>/test-preprocessor.config.js"
},
"testMatch": [
"**/*.test.(ts|tsx|js)"
]
}
}