This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@uzert/core",
"version": "1.0.0",
"description": "Robust, lightweight, module node.js framework",
"private": true,
"author": "Seedium",
"repository": {
"type": "git",
"url": "https://github.com/seedium/uzert"
},
"scripts": {
"build": "gulp build --dist node_modules/@uzert",
"dev": "gulp development",
"clean": "gulp clean:bundle",
"postbuild": "gulp move",
"prebuild:prod": "npm run clean",
"build:prod": "gulp build",
"build:samples": "gulp install:samples && npm run build && gulp build:samples",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"test": "UZERT_LOGGER_ENABLED=false nyc --require ts-node/register mocha packages/**/*.spec.ts --reporter spec --retries 3 --exit",
"test:integration": "mocha \"integration/*/{,!(node_modules)/**/}/*.spec.ts\" --reporter spec --require ts-node/register --require 'node_modules/reflect-metadata/Reflect.js' --exit",
"test:docker:up": "docker-compose -f integration/docker-compose.yml up -d",
"test:docker:down": "docker-compose -f integration/docker-compose.yml down -d",
"lint": "concurrently 'npm run lint:packages' 'npm run lint:integration' 'npm run lint:spec'",
"lint:integration": "eslint 'integration/*/{,!(node_modules)/**/}/*.ts' -c '.eslintrc.spec.js' --fix",
"lint:packages": "eslint 'packages/**/**.ts' --fix --ignore-pattern 'packages/**/*.spec.ts'",
"lint:spec": "eslint 'packages/**/**.spec.ts' -c '.eslintrc.spec.js' --fix",
"prerelease": "gulp copy-misc && npm run build && standard-version --dry-run && npm run build:prod",
"release": "lerna publish"
},
"dependencies": {
"reflect-metadata": "0.1.13",
"tslib": "2.0.1"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-angular": "9.1.1",
"@types/chai": "4.2.12",
"@types/chai-as-promised": "7.1.3",
"@types/chalk": "2.2.0",
"@types/gulp": "4.0.6",
"@types/mocha": "8.0.1",
"@types/node": "14.0.27",
"@types/reflect-metadata": "0.1.0",
"@types/sinon": "9.0.4",
"@types/sinon-chai": "3.2.4",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chalk": "4.1.0",
"concurrently": "5.3.0",
"delete-empty": "3.0.0",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"fastify": "3.2.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-sourcemaps": "2.6.5",
"gulp-typescript": "5.0.1",
"husky": "4.2.5",
"iterare": "1.2.1",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"mocha": "8.1.1",
"nyc": "15.1.0",
"object-hash": "2.0.3",
"pino": "6.5.0",
"prettier": "2.0.5",
"proxyquire": "2.1.3",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"ts-node": "8.10.2",
"typescript": "3.9.7"
},
"engines": {
"node": ">= 10.13.0"
}
}