forked from LearningLocker/xapi-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 KB
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
{
"name": "@learninglocker/xapi-service",
"version": "0.0.0-development",
"description": "A service for the xAPI",
"main": "dist/server.js",
"typings": "dist/server.d.ts",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/LearningLocker/xapi-service.git"
},
"files": [
"dist",
".env.example",
"package-lock.json"
],
"scripts": {
"start": "node dist/server.js",
"acp": "git add -A && npm run commit && git push",
"commit": "git-cz",
"build": "tsc",
"clean": "rm -rf dist",
"lint": "tslint -p ./tsconfig.json",
"duplication": "jscpd",
"semantic-release": "ht2-release-public-circleci-app"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">6.0.0",
"npm": ">3.0.0"
},
"dependencies": {
"@learninglocker/xapi-activities": "^4.1.4",
"@learninglocker/xapi-agents": "^4.1.4",
"@learninglocker/xapi-state": "^4.1.4",
"@learninglocker/xapi-statements": "^7.3.1",
"boolean": "^0.2.0",
"dotenv": "^5.0.0",
"express": "^4.14.1",
"install": "^0.12.0",
"jscommons": "^2.3.3",
"lodash": "^4.17.4",
"mongodb": "^3.0.2",
"redis": "^2.8.0",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"@ht2-labs/semantic-release": "1.1.50",
"@ht2-labs/typescript-project": "1.1.0",
"@types/dotenv": "4.0.3",
"@types/express": "4.16.0",
"@types/google-cloud__storage": "1.7.0",
"@types/ioredis": "3.2.17",
"@types/lodash": "4.14.119",
"@types/mongodb": "3.1.10",
"@types/node": "9.6.40",
"@types/redis": "2.8.6",
"@types/source-map-support": "0.4.1",
"@types/winston": "2.4.4",
"colors": "1.3.3",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"jscpd": "0.6.25",
"rimraf": "2.6.2",
"shelljs": "0.8.3",
"simple-git": "1.107.0",
"tslint": "5.11.0",
"tslint-consistent-codestyle": "1.14.1",
"tslint-immutable": "4.9.1",
"typescript": "3.2.2"
},
"publishConfig": {
"access": "public"
}
}