-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "bare-minimum-2d",
"version": "0.2.1",
"description": "An extremely lightweight React component for plotting points, lines, ellipses, and polygons on an inline SVG",
"keywords": [
"svg",
"data",
"visualization",
"graph",
"plot",
"chart",
"graphing",
"plotting",
"react",
"react-component",
"data-visualization"
],
"author": "mithi",
"license": "MIT",
"repository": "mithi/bare-minimum-2d",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle build --jsx React.createElement --format modern,cjs",
"start": "microbundle watch --jsx React.createElement --format modern,cjs",
"format": "prettier --config ./.prettierrc --write \"./src/*\"",
"prepublishOnly": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"test": "jest",
"test-deploy": "npm run build && rm -rf node_modules && cd example && npm install && npm run build"
},
"peerDependencies": {
"react": "^16.14.0"
},
"devDependencies": {
"@babel/preset-react": "^7.12.13",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"microbundle": "^0.15.1",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-test-renderer": "^16.14.0"
},
"files": [
"dist"
]
}