-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
{
"name": "@rails/request.js",
"version": "0.0.12",
"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/core": "^7.26.10",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.40.1",
"standard": "^17.1.2"
},
"dependencies": {}
}