-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.26 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mvcs",
"version": "0.0.0",
"private": true,
"description": "MV* framework for web apps inspired by robotlegs framework.",
"keywords": [
"event-bus",
"event-emitter",
"ioc",
"logger",
"module",
"mv*",
"mvc",
"mvcs",
"robotlegs",
"typescript"
],
"homepage": "https://github.com/gavar/mvcs#readme",
"bugs": {
"url": "https://github.com/gavar/mvcs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gavar/mvcs.git"
},
"license": "ISC",
"author": {
"name": "Max Stankevich",
"email": "[email protected]",
"url": "https://github.com/gavar"
},
"main": "index.js",
"workspaces": {
"packages": [
".ywl/**",
"@types/*",
"packages/*"
]
},
"scripts": {
"build": "yarn clean && yarn wsrun --bin npm -c pack",
"clean": "rimraf out && yarn wsrun -c clean",
"format:pack": "fixpack && sort-package-json && yarn wsrun -c format:pack",
"release": "yarn clean && semantic-release --no-ci",
"sync:pack": "copycat-pack -r && typesync && yarn && yarn format:pack",
"test": "jest",
"wsrun": "wsrun --stages --fast-exit --report -p @mvcs/*"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@wrench/commitlint-config"
]
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@wrench/commitlint-config": "<1.0.0",
"@wrench/copycat-package": ">=0.0.8 <1.0.0",
"@wrench/roll": ">=0.0.7 <1.0.0",
"@wrench/semantic-release-ws-preset-nodejs": ">=0.0.10 <1.0.0",
"@wrench/ts-config": ">=0.0.5 <1.0.0",
"@wrench/ywl": ">=0.0.10 <1.0.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"rollup": "^1.20.2",
"ts-jest": "^24.0.2",
"tstt": "^1.0.4",
"typescript": "^3.6.4",
"wsrun": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"commonDependencies": {
"@emulsy/annotation": ">=0.0.2 <1.0.0",
"@emulsy/compare": ">=0.0.1 <1.0.0",
"@emulsy/lang": "<1.0.0",
"react": "^16.0.0"
},
"ywl": {
"unlisted": true,
"pattern": [
"@emulsy/*"
]
}
}