This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.82 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "fluently-fetch",
"version": "0.0.0-development",
"description": "A fluent interface to the fetch API, loosely-based on the Superagent API.",
"license": "MIT",
"author": "austin ce <austin.cawley@gmail.com> (https://austince.me)",
"contributors": [
"austin ce <austin.cawley@gmail.com> (https://austince.me)",
"Keith Cirkel <oss@keithcirkel.co.uk> (http://keithcirkel.co.uk)"
],
"engines": {
"node": ">=6.13",
"npm": ">=6"
},
"main": "./dist/lib/index.node.js",
"browser": "./dist/browser/index.js",
"files": [
"src",
"dist",
"README.md",
"migration.md",
"tsconfig.json"
],
"types": "./dist/types",
"typings": "./dist/types",
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "npm run build:browser",
"build:browser": "BROWSER=true rollup -c",
"postbuild:browser": "rimraf dist/browser/**/*.d.ts dist/browser/*.d.ts",
"prebuild:docs": "rimraf docs",
"build:docs": "typedoc --out docs --theme minimal --name fluently-fetch --readme README.md --mode file --ignoreCompilerErrors",
"test": "npm run test:node && npm run test:browser",
"test:node": "nyc mocha",
"posttest:node": "nyc report --reporter=json",
"test:browser": "karma start",
"test-server:start": "cross-env PORT=5000 ts-node test/util/node/start-server",
"test-server:start:bg": "cross-env PORT=5000 ts-node test/util/node/start-server &",
"test-server:kill": "kill $(lsof -t -i:5000)",
"predeploy": "npm run build",
"deploy": "semantic-release --dry-run"
},
"dependencies": {
"@types/form-data": "^2.2.1",
"form-data": "^2.3.3"
},
"devDependencies": {
"@commitlint/cli": "^7.2.0",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
"@semantic-release/npm": "^5.1.1",
"@types/basic-auth": "^1.1.2",
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/formidable": "^1.0.31",
"@types/karma": "^3.0.1",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/node": "^6.0.118",
"@types/sinon": "^7.0.0",
"@types/sinon-chai": "^3.2.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"codecov": "^3.1.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"formidable": "^1.2.1",
"http-status-codes": "^1.3.0",
"husky": "^1.1.1",
"isomorphic-fetch": "^2.2.1",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-express-server": "^0.1.4",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^3.0.13",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.67.4",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript2": "^0.18.0",
"semantic-release": "^15.12.4",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typedoc": "^0.14.0",
"typescript": "^3.2.1"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"dist",
"test"
],
"all": false
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/austince/fluently-fetch.git"
}
}