-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.52 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
{
"name": "@phamngocduy98/flashdata",
"version": "0.0.1-alpha.0",
"description": "A realtime database library that making it easier to CRUD data with typescript",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"repository": "https://github.com/phamngocduy98/node_flashdata_library.git",
"author": "Pham Ngoc Duy <phamngocduy98@gmail.com>",
"license": "MIT",
"files": [
"build"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "mocha --exit --require ts-node/register ./test/**/*.ts",
"coverage": "nyc mocha --exit --require ts-node/register ./test/**/*.ts",
"tslint": "tslint --project . -- *.ts core/**/*.ts ./test/**/*.ts ./abstract/**/*.ts",
"prettier-check": "prettier --check *.ts ./core/**/*.ts ./test/**/*.ts ./abstract/**/*.ts",
"prettier": "prettier --write *.ts ./core/**/*.ts ./test/**/*.ts ./abstract/**/*.ts",
"types-check": "tsc --project . --noEmit --pretty --skipLibCheck",
"build": "tsc -p prod.tsconfig.json",
"npm_publish": "npm publish --access public"
},
"dependencies": {
"firebase-admin": "^9.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}