-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.04 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.04 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "bout",
"description": "Tiny framework for micro frontend installation and communication. Creates simple way to inject a microfrontend pattern into existing SPA application.",
"version": "0.3.0",
"keywords": [
"bout",
"microfrontend",
"library"
],
"author": {
"name": "Heseya",
"email": "info@heseya.com",
"url": "https://heseya.com/"
},
"contributors": [
{
"name": "Artur Mędrygał",
"email": "artur@heseya.com",
"url": "https://amedrygal.pl/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/heseya/bout.git"
},
"bugs": {
"url": "https://github.com/heseya/bout/issues"
},
"homepage": "https://github.com/heseya/bout",
"license": "MIT",
"main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "shx rm -rf dist coverage .rpt2_cache",
"watch": "cross-env NODE_ENV=production EXTERNAL=1 rollup -c --watch -f umd -o dist/index.umd.js",
"build": "npm run lint && npm run clean && npm run build:esm && npm run build:umd && npm run build:min",
"build:esm": "cross-env NODE_ENV=production EXTERNAL=1 rollup -c -f esm -o dist/index.js",
"build:umd": "cross-env NODE_ENV=production rollup -c -f umd -o dist/index.umd.js",
"build:min": "cross-env NODE_ENV=production MINIFY=1 rollup -c -f umd -o dist/index.min.js",
"lint": "eslint \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\"",
"test": "cross-env NODE_ENV=test jest",
"coverage": "jest --coverage",
"prepublish": "yarn build"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"lint:fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"coverage": "Rebuild, run tests, then create and open the coverage report"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@koa/cors": "^3.1.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/assert": "^1.5.1",
"@types/jest": "^26.0.13",
"@types/json-stringify-safe": "^5.0.0",
"@types/koa": "^2.13.1",
"@types/koa-router": "^7.4.2",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^3.0.2",
"@types/lodash": "^4.14.172",
"@types/wechat-miniprogram": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.6",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"koa": "^2.13.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-views": "^7.0.1",
"nodemon": "^2.0.7",
"power-assert": "^1.6.1",
"prettier": "^2.3.2",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"shx": "^0.3.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.4",
"webpack": "^4.44.1",
"webpack-espower-loader": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e .git/COMMIT_EDITMSG",
"pre-commit": "npm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
}
}