-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "@solaldr/emitter",
"version": "0.2.2",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://www.github.com/SolalDR/emitter",
"repository": "https://www.github.com/SolalDR/emitter",
"bugs": "https://www.github.com/SolalDR/emitter/issues",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.5",
"jest": "^27.2.5",
"rollup": "^2.40.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-ts": "^1.3.7",
"tslib": "^2.0.3",
"typedoc": "^0.20.28",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "jest",
"publish": "npm publish --access public",
"doc": "typedoc"
},
"jest": {
"roots": [
"src",
"test"
],
"testMatch": [
"<rootDir>/test/**/*"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*"
],
"coverageReporters": [
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"files": [
"dist"
]
}