-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "@reactway/tiny-emitter",
"version": "1.0.2",
"description": "Small change emitter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "tsc -p . --noEmit && eslint \"src/**/*.ts*\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactway/tiny-emitter.git"
},
"keywords": [
"emitter",
"tiny-emitter"
],
"files": [
"dist",
"**/*.md"
],
"author": "Martynas Žilinskas <[email protected]> (https://github.com/MartynasZilinskas)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactway/tiny-emitter/issues"
},
"homepage": "https://github.com/reactway/tiny-emitter#readme",
"devDependencies": {
"@reactway/eslint-config": "^1.0.0-alpha",
"@types/jest": "^24.0.18",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"tslib": "^1.10.0"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts"
],
"coverageReporters": [
"cobertura"
]
}
}