-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "firestorm-db",
"version": "1.13.0",
"description": "Self hosted Firestore-like database with API endpoints based on micro bulk operations",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"php_start": "node tests/php_setup.js",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js",
"php_stop": "sh tests/php_server_kill.sh",
"full": "npm run php_stop ; npm run php_start && npm run test ; npm run php_stop",
"local_tests": "sudo act -P ubuntu-latest=shivammathur/node:latest -j js-wrapper-test",
"jsdoc": "jsdoc src/index.js -c jsdoc.json -R README.md -t ./node_modules/docdash -d out",
"nodemon_jsdoc": "nodemon -x npm run jsdoc --watch src/index.js --watch jsdoc.json --watch README.md",
"types": "npx tsc",
"prettier": "prettier \"{,!(node_modules)/**/}*.{js,ts}\" --config .prettierrc --write",
"cov": "npm run php_stop ; npm run php_start && nyc --reporter=text mocha tests/**/*.spec.js; npm run php_stop"
},
"repository": {
"type": "git",
"url": "https://github.com/TheRolfFR/firestorm-db"
},
"keywords": [
"firebase",
"firestore",
"db",
"api",
"micro-operations",
"bulk"
],
"author": "TheRolf",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheRolfFR/firestorm/issues"
},
"homepage": "https://therolffr.github.io/firestorm-db/",
"files": [
"src/index.js",
"typings/index.d.ts"
],
"dependencies": {
"axios": "^1.6.8",
"form-data": "^4.0.0"
},
"devDependencies": {
"chai": "^4.4.1",
"docdash": "^2.0.2",
"glob": "^10.3.12",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"recursive-copy": "^2.0.14",
"typescript": "^5.4.5"
}
}