-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "rest-api-handler",
"version": "2.22.18",
"description": "Handler for REST APIs",
"main": "dist/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fabulator/rest-api-handler.git"
},
"bugs": {
"url": "https://github.com/fabulator/rest-api-handler/issues"
},
"homepage": "https://github.com/fabulator/rest-api-handler",
"author": "Michal Ozogán <michal@ozogan.eu>",
"license": "Apache-2.0",
"keywords": [
"rest",
"rest-api",
"fetch"
],
"devDependencies": {
"babel-config-fabulator": "^1.4.13",
"commitlint-config-fabulator": "^5.0.0",
"eslint-config-fabulator": "^1.3.0",
"jest-config-fabulator": "^1.2.0",
"rollup-config-fabulator": "^2.0.0",
"cross-fetch": "^3.1.5",
"semantic-release-config-fabulator": "^6.0.0"
},
"scripts": {
"lint": "eslint --ext .ts ./src ./tests",
"lint:fix": "npm run lint -- --fix",
"tsc": "tsc",
"test": "jest",
"test:build": "npm run test -- --config jest.config.build.js",
"build": "rollup --config ./rollup.config.js",
"test:all": "npm run lint && npm run tsc && npm run test",
"prepublishOnly": "npm run build && npm run tsc && npm run test:build",
"release": "semantic-release"
},
"dependencies": {
"@babel/runtime": "^7.17.0"
}
}