realreport 0.1.0 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +3 -0
- package/README.md +102 -0
- package/dist/check-checked.png +0 -0
- package/dist/check-empty.png +0 -0
- package/dist/check-unchecked.png +0 -0
- package/dist/realreport.css +754 -0
- package/dist/realreport.d.ts +119 -0
- package/dist/realreport.es.js +1 -0
- package/dist/realreport.ie11.js +1 -0
- package/dist/realreport.js +1 -0
- package/package.json +70 -7
- package/index.js +0 -0
package/package.json
CHANGED
|
@@ -1,14 +1,77 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realreport",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "RealReport Runtime Viewer",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "
|
|
8
|
-
"url": "
|
|
7
|
+
"name": "Wooritech",
|
|
8
|
+
"url": "https://real-report.com",
|
|
9
9
|
"email": "support@realgrid.com"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://www.wooritech.com",
|
|
12
|
+
"main": "dist/realreport.es.js",
|
|
13
|
+
"types": "dist/realreport.d.ts",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"reports",
|
|
16
|
+
"dataviz",
|
|
17
|
+
"visualization",
|
|
18
|
+
"realreport",
|
|
19
|
+
"realgrid"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"registry": "https://registry.npmjs.org/"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git://github.com/realgrid/realreport-examples.git"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/**/*"
|
|
30
|
+
],
|
|
11
31
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
|
|
32
|
+
"clean": "rimraf dist",
|
|
33
|
+
"makehash": "git rev-parse -- HEAD > .commithash",
|
|
34
|
+
"build": "npm run makehash && npm run clean && rollup -c ./rollup.config.js",
|
|
35
|
+
"ex:html": "http-server examples/html-browser",
|
|
36
|
+
"ex:nextjs": "npm run dev --prefix examples/nextjs-ts",
|
|
37
|
+
"ex:reactjs": "npm start --prefix examples/react-jsx",
|
|
38
|
+
"test": "jest --config jest.config.ts",
|
|
39
|
+
"cover": "c8 -o ./.coverage node .build/tests/index.js"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@babel/core": "^7.16.5",
|
|
43
|
+
"@babel/preset-env": "^7.16.5",
|
|
44
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
45
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
46
|
+
"@rollup/plugin-node-resolve": "^13.1.1",
|
|
47
|
+
"@rollup/plugin-replace": "^3.0.0",
|
|
48
|
+
"@rollup/plugin-typescript": "^8.3.0",
|
|
49
|
+
"@types/copyfiles": "^2.4.1",
|
|
50
|
+
"@types/jest": "^27.0.3",
|
|
51
|
+
"@types/node": "^17.0.0",
|
|
52
|
+
"@types/tldjs": "^2.3.1",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
54
|
+
"@typescript-eslint/parser": "^5.8.1",
|
|
55
|
+
"@vercel/ncc": "^0.33.0",
|
|
56
|
+
"@wooritech/rockhammer": "^1.0.12",
|
|
57
|
+
"c8": "^7.10.0",
|
|
58
|
+
"copyfiles": "^2.4.1",
|
|
59
|
+
"eslint": "^8.5.0",
|
|
60
|
+
"eslint-plugin-jest": "^25.3.2",
|
|
61
|
+
"jest": "^27.4.5",
|
|
62
|
+
"match-url-wildcard": "0.0.4",
|
|
63
|
+
"prettier": "^2.5.1",
|
|
64
|
+
"rimraf": "^3.0.2",
|
|
65
|
+
"rollup": "^2.61.1",
|
|
66
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
67
|
+
"rollup-plugin-css-bundle": "^1.0.4",
|
|
68
|
+
"rollup-plugin-dts": "^4.0.1",
|
|
69
|
+
"rollup-plugin-sizes": "^1.0.4",
|
|
70
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
71
|
+
"ts-jest": "^27.1.2",
|
|
72
|
+
"ts-node": "^10.4.0",
|
|
73
|
+
"tslib": "^2.3.1",
|
|
74
|
+
"typescript": "^4.5.4"
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {}
|
|
14
77
|
}
|
package/index.js
DELETED
|
File without changes
|