-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "@rails/request.js",
"version": "0.0.11",
"description": "A tiny Fetch API wrapper that allows you to make http requests without need to handle to send the CSRF Token on every request",
"main": "./dist/requestjs.js",
"module": "./src/index.js",
"repository": "https://github.com/rails/request.js",
"author": "Marcelo Lauxen <marcelolauxen16@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"rails",
"fetch",
"browser",
"fetch api"
],
"bugs": {
"url": "https://github.com/rails/request.js"
},
"scripts": {
"lint": "standard src",
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-jest": "^27.1.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.0.6",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3"
},
"dependencies": {}
}