-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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/gantt-chart",
"version": "1.3.2",
"description": "Web component of a gantt chart.",
"main": "dist/gantt-chart.cjs.js",
"module": "dist/gantt-chart.esm.js",
"browser": "dist/gantt-chart.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "xo src/*",
"lint-fix": "xo --fix src/*",
"release": "np"
},
"keywords": [
"gantt",
"plot",
"chart",
"webcomponent",
"component"
],
"author": {
"name": "Riccardo Scalco",
"email": "[email protected]",
"url": "http://riccardoscalco.github.io/"
},
"license": "MIT",
"repository": "nextbitlabs/gantt-chart",
"homepage": "https://github.com/nextbitlabs/gantt-chart/",
"bugs": "https://github.com/nextbitlabs/gantt-chart/issues",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"hybrids": "^4.0.3",
"np": "^6.2.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"xo": "^0.27.2"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}