-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@codingnninja/sapabase",
"version": "1.0.5",
"description": "Create \"Serverless Database\" with JavaScript and Github for projects that need simple data.",
"main": "dist/cjs/bundle.cjs",
"module": "dist/esm/bundle.js",
"browser": "dist/umd/bundle.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/bundle.js",
"require": "./dist/cjs/bundle.cjs"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"test": "mocha",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingnninja/sapabase.git"
},
"keywords": [
"Serverless Database",
"Database",
"Serverless",
"JavaScript Serverless Database",
"Static database",
"Free Serverless Database"
],
"author": "Ayobami Ogundiran (ayobami_ogundiran@yahoo.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/codingnninja/sapabase/issues"
},
"homepage": "https://github.com/codingnninja/sapabase#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rollup": "^3.9.1"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"octokit": "^2.0.11",
"sinon": "^15.0.4"
}
}