-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "giganttic",
"version": "0.1.0",
"description": "Gantt chart data visualization utilizing modern Javascript APIs",
"main": "./dist/giganttic-browser.cjs.js",
"browser": "./dist/giganttic-browser.umd.js",
"module": "./dist/giganttic-browser.esm.js",
"scripts": {
"bundlesize": "bundlesize",
"build": "rimraf dist && rollup -c rollup.config.js",
"build-watch": "rollup -c rollup.config.js --watch",
"dev": "rollup -c rollup.dev.config.js --watch",
"test": "c8 --reporter=html --reporter=text --check-coverage --lines 80 ava test/*.js && bundlesize",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"gantt"
],
"author": "Gryphon Myers",
"license": "MIT",
"dependencies": {
"isomitter": "^0.1.0",
"lit-html": "^1.2.1",
"throttle-debounce": "^2.2.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.4.0",
"ava": "^3.10.1",
"bundlesize": "^0.18.0",
"c8": "^7.2.1",
"esm": "^3.2.25",
"http-server": "^0.12.3",
"jsdom": "^16.3.0",
"rollup": "^2.22.1",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-terser": "^6.1.0"
}
}