-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "inula-intl",
"version": "1.0.35",
"description": "intl for inula framework, a part of intl-ecosystem",
"main": "./build/cjs/intl.js",
"module": "./build/esm/intl.js",
"type": "module",
"types": "build/@types/index.d.ts",
"scripts": {
"demo-serve": "webpack serve --mode=development",
"build": "rollup --config rollup.config.js && npm run build-types ",
"build-types": "tsc -p tsconfig.json && rollup -c build-type.js",
"test": "jest --no-cache --config jest.config.js",
"test-c": "jest --coverage"
},
"repository": {
"type": "git",
"url": ""
},
"files": [
"/build"
],
"keywords": [],
"author": "",
"license": "MulanPSL2",
"peerDependencies": {
"openinula": ">=1.0.1"
},
"devDependencies": {
"@babel/preset-react": "^7.9.4",
"openinula": "^1.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "18.0.25",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.1",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-visualizer": "^5.10.0",
"ts-node": "10.9.1",
"tslib": "^2.6.1",
"webpack": "^5.72.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.13.3"
}
}