-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
82
83
84
{
"name": "bd-emitter",
"description": "A lightweight event emitter implementation base on typescript",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"changed": "lerna changed",
"diff": "lerna diff",
"publish:package": "lerna publish from-package",
"build": "node scripts/build.js",
"release": "lerna version --conventional-commits --no-push"
},
"keywords": [
"emitter",
"events"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/bdwenxi"
},
"license": "MIT",
"devDependencies": {
"@types/co": "^4.6.2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.1.3",
"babel-jest": "^25.1.0",
"chalk": "^3.0.0",
"co": "^4.6.0",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.0.4",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jest-spec-reporter": "^1.0.12",
"lerna": "^3.20.2",
"minimist": "^1.2.5",
"pre-commit": "^1.2.2",
"raf": "^3.4.1",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/packages/bd-emitter/dist/"
],
"transform": {
"^.+\\.js$": "babel-jest",
"\\.ts$": "ts-jest"
},
"setupFiles": [
"raf/polyfill"
],
"testRegex": "/__tests__/.*\\.(ts|js)$",
"collectCoverageFrom": [
"packages/**/*.ts"
],
"transformIgnorePatterns": [
"<rootDir>/packages/bd-emitter/dist/",
"node_modules\\/[^/]+?\\/(?!(es|node_modules)\\/)"
],
"reporters": [
"default",
"jest-spec-reporter"
]
},
"dependencies": {}
}