forked from projectOpenRAP/OpenRAP
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
{
"name": "OpenRAP",
"version": "1.0.1",
"description": "OpenRAP Software",
"main": "dist/main.js",
"scripts": {
"build": "rimraf dist && tsc && cpy package.json ./dist && cpy ./db/ ./dist/db/",
"test": "nyc --reporter=lcov --reporter=html --reporter=text mocha --exit -r ts-node/register **/**/*.spec.ts **/*.spec.ts *.spec.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/*.spec.ts",
"**/**/*.spec.ts",
"*.spec.ts",
"interfaces/*.ts",
"**/ITelemetry.ts"
],
"include": [
"**/**/*.ts",
"**/*.ts",
"*.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true
},
"author": "sunbird",
"license": "MIT",
"dependencies": {
"@project-sunbird/telemetry-sdk": "0.0.24",
"archiver": "^3.0.0",
"body-parser": "^1.18.2",
"chokidar": "^3.0.0",
"decompress-zip": "^0.2.2",
"express": "^4.16.3",
"form-data": "^3.0.0",
"fs-extra": "^7.0.1",
"getmac": "^1.4.6",
"hashids": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"pouchdb": "^7.1.1",
"pouchdb-find": "^7.1.1",
"su-downloader3": "^1.0.8",
"systeminformation": "^4.14.17",
"typescript-ioc": "^1.2.5"
},
"devDependencies": {
"@project-sunbird/ext-framework-server": "^0.1.26",
"@types/archiver": "^2.1.3",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.9",
"@types/unzipper": "^0.9.1",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"cpy-cli": "^2.0.0",
"gulp": "^3.9.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"typescript": "^2.8.4",
"uuid": "^3.3.2"
}
}