-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "ternary-plot",
"version": "1.1.3",
"description": "web component to implement a ternary plot.",
"main": "dist/ternary-plot.cjs.js",
"module": "dist/ternary-plot.esm.js",
"browser": "dist/ternary-plot.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "xo src/*",
"lint-fix": "xo --fix src/*"
},
"keywords": [
"ternary",
"plot",
"chart",
"webcomponent",
"component"
],
"author": {
"name": "Riccardo Scalco",
"email": "[email protected]",
"url": "http://riccardoscalco.github.io/"
},
"license": "MIT",
"repository": "nextbitlabs/ternary-plot",
"homepage": "https://github.com/nextbitlabs/ternary-plot/",
"bugs": "https://github.com/nextbitlabs/ternary-plot/issues",
"devDependencies": {
"hybrids": "^4.0.2",
"rollup": "^1.14.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"xo": "^0.27.2"
},
"files": [
"dist"
]
}