-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.88 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
{
"name": "message-manager",
"version": "1.1.0",
"description": "A javascript message manager",
"main": "dist/MessageManager.js",
"scripts": {
"build": "gulp",
"clean": "gulp clean",
"test": "npm run clean && nyc mocha",
"test:nocover": "npm run clean && mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"watchExtensions": [
"ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TwitchBronBron/MessageManager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TwitchBronBron/MessageManager/issues"
},
"nyc": {
"include": [
"src/**/*.ts",
"!src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"module": "dist/MessageManager.js",
"homepage": "https://github.com/TwitchBronBron/MessageManager#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-ignore": "^3.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.0",
"gulp-uglify": "^3.0.2",
"merge2": "^1.4.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"requirejs": "^2.3.6",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}