-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.57 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
{
"name": "agoran-awe",
"version": "1.1.2",
"description": "Agora WebSDK Enhancer",
"author": "agoran-association",
"homepage": "",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc --project tsconfig.json"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"devDependencies": {
"@types/agora-rtc-sdk": "^2.6.0",
"@types/jest": "^24.0.9",
"@types/node": "^11.9.5",
"agora-rtc-sdk": "^2.6.1",
"jest": "^24.1.0",
"jest-config": "^24.1.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"wolfy87-eventemitter": "^5.2.6"
},
"peerDependencies": {
"agora-rtc-sdk": "^2.6.1"
}
}