-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
{
"name": "@oxygen-ui/logger",
"version": "2.2.0",
"description": "Logger for Oxygen UI projects",
"author": "WSO2",
"license": "Apache-2.0",
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/wso2/oxygen-ui/tree/main/packages/logger#readme",
"bugs": {
"url": "https://github.com/wso2/oxygen-ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wso2/oxygen-ui",
"directory": "packages/logger"
},
"keywords": [
"logger",
"oxygen-ui",
"oxygen-ui-logger"
],
"scripts": {
"build": "rollup -c",
"lint": "pnpm lint:es",
"lint:es": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest --passWithNoTests",
"typecheck": "tsc --noemit -p tsconfig.json"
},
"dependencies": {
"chalk": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/chalk": "^2.2.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.18",
"@wso2/eslint-plugin": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/eslint-plugin?b21bbbd7379ab3b7315d7d9478dbd88c0bf11241",
"@wso2/prettier-config": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/prettier-config?b21bbbd7379ab3b7315d7d9478dbd88c0bf11241",
"babel-jest": "^29.3.1",
"eslint": "8.25.0",
"jest": "29.0.3",
"prettier": "^2.8.0",
"rollup": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"publishConfig": {
"access": "public"
}
}