-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "@nextbitlabs/trend-line",
"version": "1.2.1",
"description": "Web component implementation of a trend-line.",
"module": "dist/trend-line.esm.js",
"exports": {
"import": "./dist/trend-line.esm.js"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "xo src/*",
"lint-fix": "xo --fix src/*",
"release": "np"
},
"keywords": [
"trend-line",
"arrow",
"SVG",
"line",
"chart",
"web-component",
"component"
],
"author": {
"name": "Riccardo Scalco",
"email": "[email protected]",
"url": "http://riccardoscalco.github.io/"
},
"license": "MIT",
"repository": "nextbitlabs/trend-line",
"homepage": "https://github.com/nextbitlabs/trend-line/",
"bugs": "https://github.com/nextbitlabs/trend-line/issues",
"devDependencies": {
"np": "^7.5.0",
"rollup": "^2.53.2",
"xo": "^0.41.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}