This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@learninglocker/persona-service",
"version": "0.0.0-development",
"description": "A package for managing Personas in Learning Locker",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/LearningLocker/persona-service.git"
},
"files": [
"dist",
".env.example",
"package-lock.json"
],
"scripts": {
"acp": "git add -A && npm run commit && git push",
"commit": "git-cz",
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint src --quiet",
"duplication": "jscpd",
"test": "mocha $(find dist -name '*.test.js') --timeout 6000 --exit",
"test-mongo": "AUTH_REPO=test MODELS_REPO=mongo STORAGE_REPO=local npm run test",
"test-ci": "npm run test-mongo",
"test-all": "npm run test-ci",
"cover-mongo": "nyc --lines 100 --check-coverage --exclude '(dist/config.js|dist/repoFactory/index.js)' npm run test-mongo",
"cover-ci": "nyc --lines 100 --check-coverage --exclude '(dist/config.js|dist/repoFactory/index.js)' npm run test-ci",
"cover-all": "nyc --lines 100 --check-coverage --exclude '(dist/config.js|dist/repoFactory/index.js)' npm run test-all",
"semantic-release": "ht2-release-public-circleci-lib"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=14.0.0",
"npm": ">8.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"boolean": "^0.2.0",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"fs-extra": "^5.0.0",
"jscommons": "^6.0.0",
"lodash": "^4.17.4",
"mongodb": "^4.14.0",
"promise-retry": "^1.1.1",
"rulr": "^4.0.0",
"sha1": "^1.1.1",
"sift": "^5.0.0",
"source-map-support": "^0.5.0",
"stream-to-string": "^1.1.0",
"string-to-stream": "^1.1.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"@ht2-labs/semantic-release": "3.0.19",
"@ht2-labs/typescript-project": "1.1.0",
"@types/bluebird": "3.5.36",
"@types/dotenv": "4.0.3",
"@types/express": "4.17.13",
"@types/fs-extra": "5.1.0",
"@types/lodash": "4.14.157",
"@types/mocha": "5.2.7",
"@types/node": "^16.18.12",
"@types/node-fetch": "1.6.9",
"@types/source-map-support": "0.5.4",
"@types/supertest": "2.0.11",
"@types/uuid": "3.4.10",
"@types/winston": "2.3.9",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"assert": "1.5.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "2.1.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jscpd": "3.3.1",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "13.3.0",
"rimraf": "2.7.1",
"supertest": "3.4.2",
"travis-cov": "0.2.5",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}