forked from andrei-tatar/nora-firebase-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "@andrei-tatar/nora-firebase-common",
"version": "1.0.34",
"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.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-json-schema-generator": "^0.83.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"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": "^7.0.3"
}
}