-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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": "boula",
"version": "0.4.2",
"description": "Facette time series charts library",
"author": {
"name": "Vincent Batoufflet",
"email": "vincent@batoufflet.info"
},
"license": "BSD-3-Clause",
"homepage": "https://facette.io/",
"repository": {
"type": "git",
"url": "https://github.com/facette/boula.git"
},
"main": "dist/boula.js",
"module": "src/index",
"dependencies": {
"d3": "5.7.0"
},
"devDependencies": {
"@babel/core": "7.0.1",
"@babel/plugin-syntax-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.0.0",
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"lodash.merge": "4.6.1",
"package-preamble": "0.1.0",
"rollup": "0.66.0",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-node-resolve": "3.4.0",
"uglify-js": "3.4.9"
},
"scripts": {
"build": "rm -rf dist && rollup --banner=\"$(preamble)\" -c && uglifyjs --comments \"/Copyright/\" --source-map -c -m -o dist/boula.min.js dist/boula.js",
"lint": "eslint --ext .js --fix src/",
"release": "yarn build && zip -j dist/boula.zip CHANGES.md LICENSE README.md dist/boula.js dist/boula.min.js dist/boula.min.js.map"
}
}