This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
{
"name": "funtch",
"version": "2.5.5",
"engines": {
"node": ">=6"
},
"description": "FUNctional feTCH isomorphic",
"browser": "index.js",
"main": "index.js",
"homepage": "https://vibioh.github.io/funtch/",
"scripts": {
"format": "prettier --print-width 100 --single-quote --trailing-comma all --color --write \"./src/**/*.js\"",
"style": "eslint --fix \"./src/**/*.js\"",
"codestyle": "npm run format && npm run style",
"test": "./node_modules/nyc/bin/nyc.js --reporter text --reporter lcov ava --verbose --timeout=30s",
"doc": "./node_modules/esdoc/out/src/ESDocCLI.js -c esdoc.json",
"build": "./node_modules/rollup/dist/bin/rollup -c",
"ci": "npm run codestyle && npm run test && npm run doc && npm run build",
"postbuild": "node example/cjs.test.js && babel-node example/es6.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ViBiOh/funtch.git"
},
"keywords": [
"fetch",
"isomorphic",
"functional"
],
"author": "Vincent Boutour",
"contributors": [
"Vincent Boutour (https://vibioh.fr)"
],
"license": "MIT",
"bugs": {
"url": "/~https://github.com/ViBiOh/funtch/issues"
},
"devDependencies": {
"@babel/cli": "7.21.5",
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.21.8",
"@babel/node": "7.20.7",
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.18.6",
"@babel/register": "7.21.0",
"ava": "5.2.0",
"esdoc": "1.1.0",
"esdoc-coverage-plugin": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-jsx-plugin": "1.0.0",
"esdoc-publish-html-plugin": "1.1.2",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"jsdom": "22.0.0",
"nyc": "15.1.0",
"prettier": "2.8.8",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "15.0.4",
"uglify-js": "3.17.4"
},
"dependencies": {
"isomorphic-fetch": "3.0.0"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"require": [
"@babel/register"
]
}
}