-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "@andrei-tatar/nora-firebase-common",
"version": "1.12.3",
"description": "Common stuff for nora firebase",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && npm run schema && tslint -p . && tsc && npm run test",
"schema": "node generate-schema.mjs",
"pub": "npm run build && npm publish --registry https://registry.npmjs.org/ --access=public",
"test": "mocha --reporter spec --require ts-node/register 'src/**/*.test.ts'"
},
"author": "Andrei Tatar",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"ts-json-schema-generator": "^1.3.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrei-tatar/nora-firebase-common.git"
},
"bugs": {
"url": "https://github.com/andrei-tatar/nora-firebase-common/issues"
},
"homepage": "https://github.com/andrei-tatar/nora-firebase-common#readme",
"dependencies": {
"ajv": "^8.12.0",
"tslib": "^2.6.2"
}
}