-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "jscharting-react",
"version": "1.4.2",
"description": "JSCharting plugin for react",
"homepage": "https://jscharting.com",
"author": "JSCharting <support@jscharting.com> (https://jscharting.com/support.htm)",
"bugs": {
"email": "support@jscharting.com"
},
"license": "jscharting.com/store/",
"main": "dist/jscharting-react.js",
"module": "dist/jscharting-react.es.js",
"jsnext:main": "dist/jscharting-react.es.js",
"typings": "./dist/jscharting-react.d.ts",
"types": "./dist/jscharting-react.d.ts",
"scripts": {
"build": "npm run format && rollup -c",
"build-examples": "cd examples && npm install && npm run build",
"start-examples": "cd examples && npm install && npm run start",
"format": "prettier --config ./.prettierrc.js --write src/*.jsx tests/*.js",
"lint": "eslint src/*.jsx",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscharting/jscharting-react.git"
},
"keywords": [
"charts",
"dataviz",
"graphs",
"visualization",
"javascript-chart",
"javascript",
"react"
],
"dependencies": {
"jscharting": "3.4.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^9.5.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0",
"rollup": "^2.60.0",
"typescript": "^3.8.3"
},
"files": [
"dist"
]
}