-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.08 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
{
"author": {
"name": "Michael Akiliev"
},
"bugs": {
"url": "https://github.com/houd1ni/lafetch/issues"
},
"bundleDependencies": [],
"deprecated": false,
"description": "Very light modular replacement for libs like axios, based on the fetch API.",
"homepage": "https://houd1ni.github.io/lafetch/",
"keywords": [
"api",
"rest",
"websocket",
"json",
"data",
"axios",
"d.ts",
"strongly-typed",
"typescript"
],
"license": "MIT",
"main": "dist/bundle.js",
"module": "dist/bundle.esm.js",
"name": "lafetch",
"repository": {
"type": "git",
"url": "git+https://github.com/houd1ni/lafetch.git"
},
"scripts": {
"lint": "tslint src/*.ts",
"test": "npm run gentypes && npm run prod:cjs && ava",
"test:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:lazy": "ava",
"gentypes": "dts-bundle-generator -o dist/bundle.d.ts src/main.ts",
"dev": "cross-env NODE_ENV=development BUILD=es rollup -c",
"prod:cjs": "cross-env NODE_ENV=production BUILD=cjs rollup -c",
"prod:es": "cross-env NODE_ENV=production BUILD=es rollup -c",
"prod": "npm run gentypes && npm run prod:es && npm run prod:cjs"
},
"version": "0.4.5",
"ava": {
"files": [
"./test/specs/*.ts"
],
"serial": false,
"failFast": true,
"timeout": "2m",
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@babel/preset-env": "^7.8.3",
"@types/node": "^13.5.0",
"ava": "^5.1.0",
"codecov": "^3.6.2",
"cross-env": "^7.0.0",
"dts-bundle-generator": "3.3.1",
"nyc": "^15.0.0",
"rollup": "^1.30.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "3.7.5"
},
"types": "./dist/bundle.d.ts",
"dependencies": {
"pepka": "^0.7.10"
}
}