-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "@sourcetoad/ribbit",
"version": "1.0.3",
"description": "An api module for Sourcetoad projects",
"license" : "ISC",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": [
"dist/*"
],
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "NODE_ENV=development rollup --config ./rollup.config.js",
"prod": "NODE_ENV=production rollup --config ./rollup.config.js",
"watch": "npm run dev -- --watch",
"test": "NODE_ENV=testing jest --config ./jest.config.js",
"lint": "eslint . --config ./.eslintrc.js"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"msw": "^0.35.0",
"node-fetch": "^3.0.0",
"rollup": "^2.58.3",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcetoad/Ribbit.git"
},
"keywords": [
"Api",
"Http Client",
"fetch"
],
"author": "Sourcetoad",
"bugs": {
"url": "https://github.com/sourcetoad/Ribbit/issues"
},
"homepage": "https://github.com/sourcetoad/Ribbit#README"
}