-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 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
52
53
54
55
56
{
"name": "react-c3-component",
"version": "2.0.0",
"description": "It is a small C3 chart component.",
"main": "lib/Chart.js",
"scripts": {
"test": "jest",
"coverage": "codecov",
"lint": "eslint ./ && echo 'lint succesed'",
"prebuild": "npm run test",
"build": "babel src --out-dir lib --ignore **/*.test.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wuct/react-c3-component"
},
"keywords": [
"react"
],
"author": "wuct",
"license": "MIT",
"bugs": {
"url": "https://github.com/wuct/react-c3-component/issues"
},
"homepage": "https://github.com/wuct/react-c3-component",
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-react": "7.14.5",
"babel-eslint": "10.1.0",
"c3": "0.7.20",
"codecov": "3.8.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "9.39.1",
"eslint-plugin-react": "7.24.0",
"jest": "26.6.3",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-test-renderer": "16.14.0"
},
"peerDependencies": {
"c3": ">= 0.4 < 0.8",
"react": "^15.3.0 || ^16.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"prop-types": "^15.7.2"
}
}