-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "@alfalab/client-event-bus",
"version": "2.0.2",
"main": "./build/index.js",
"module": "./build/esm/index.js",
"typings": "./build/index.d.ts",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/core-ds/arui-scripts.git"
},
"bugs": {
"url": "https://github.com/core-ds/arui-scripts/issues"
},
"homepage": "https://github.com/core-ds/arui-scripts/tree/master/packages/client-event-bus#readme",
"scripts": {
"build:commonjs": "tsc --project tsconfig.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "yarn build:commonjs && yarn build:esm",
"test": "jest",
"lint:scripts": "eslint \"**/*.{js,jsx,ts,tsx}\" --ext .js,.jsx,.ts,.tsx",
"lint": "yarn lint:scripts",
"lint:fix": "yarn lint:scripts --fix",
"format": "prettier --write $INIT_CWD/{config,src}/**/*.{ts,tsx,js,jsx,css}",
"audit": "yarn npm audit --severity high --environment production"
},
"peerDependencies": {
"react": ">16.18.0"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"eslint": "^8.20.0",
"eslint-config-custom": "workspace:*",
"jest": "28.1.3",
"prettier": "^2.7.1",
"react": "18.2.0",
"ts-jest": "28.0.8",
"typescript": "4.9.5"
}
}