-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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": "retention",
"version": "1.3.3",
"description": "Build retention matrix, render table or chart with data",
"main": "dist/retention.cjs.js",
"module": "dist/retention.esm.js",
"browser": "dist/retention.umd.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c --watch",
"sample": "serve .",
"prepublish": "npm build"
},
"author": "Michał",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marszall87/retention.git"
},
"dependencies": {
"hyperhtml": "^2.13.0",
"ordinal": "^1.0.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chance": "^1.0.16",
"fast-async": "^6.3.7",
"rollup": "^0.63.4",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-visualizer": "^0.8.0",
"serve": "^9.6.0"
},
"peerDependencies": {
"c3": "^0.6.7",
"d3": "^5.5.0"
}
}