-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 766 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
{
"name": "fetch.jsonapi",
"version": "0.1.23",
"description": "Fetch JSON:API with ease",
"main": "dist/fetch.jsonapi.js",
"repository": "https://github.com/yeliu84/fetch.jsonapi",
"author": "Ye Liu",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"jest": "^26.2.2",
"regenerator-runtime": "^0.13.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"fetch.json": "^0.2.6",
"lodash": "^4.17.19",
"query-string": "^6.13.1"
},
"scripts": {
"build": "babel-node ./node_modules/.bin/webpack",
"test": "jest"
}
}