-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"author": "Ryan Homer",
"dependencies": {},
"description": "A Javascript library for a layered approach to accessing REST API endpoints.",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"codecov": "^3.8.1",
"gh-pages": "^3.2.0",
"jest": "^26.6.3",
"rollup": "^2.42.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.2",
"tslib": "^2.1.0",
"typedoc": "^0.20.28",
"typescript": "4.2"
},
"files": [
"package.json",
"dist"
],
"homepage": "https://techrah.github.io/cruud-connector/",
"keywords": [
"api",
"connector",
"crud",
"crud-connector",
"rest"
],
"license": "MIT",
"main": "dist/index.min.js",
"name": "@techrah/cruud-connector",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/techrah/cruud-connector.git"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c && rm -r tmp",
"build:docs": "typedoc",
"publish:docs": "gh-pages -d docs",
"test": "jest",
"testcov": "tsc --noEmit && jest --coverage && codecov --disable=gcov"
},
"types": "dist/index.d.ts",
"version": "1.0.12"
}