forked from moltin/moltin-request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 777 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 777 Bytes
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
{
"name": "@moltin/request",
"version": "0.0.0-semantic-release",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc -d",
"clean": "rimraf dist",
"test": "jest",
"semantic-release": "semantic-release"
},
"dependencies": {
"cross-fetch": "3.0.4"
},
"devDependencies": {
"@types/fetch-mock": "7.3.2",
"@types/jest": "24.9.1",
"fetch-mock": "7.7.3",
"jest": "24.9.0",
"rimraf": "2.7.1",
"semantic-release": "15.14.0",
"ts-jest": "24.3.0",
"typescript": "3.8.3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/moltin/moltin-request.git"
}
}