-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.34 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "plover",
"version": "0.0.8",
"description": "An approach to using Vega in R Markdown",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/netbek/plover"
},
"scripts": {
"css": "node-sass-chokidar vega/src/css/ -o vega/css && postcss vega/css/*.css --use autoprefixer -d vega/css && cleancss -o vega/css/bundle.min.css vega/css/bundle.css",
"js": "webpack --entry ./vega/src/js/bundle.js --output-path ./vega/js --output-filename bundle.min.js --output-library-target umd --hide-modules --mode production",
"build": "npm run css && npm run js",
"deploy": "gh-pages -d vega",
"postinstall": "npm run build"
},
"author": {
"name": "Hein Bekker",
"email": "hein@netbek.co.za",
"url": "http://netbek.co.za"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/netbek/plover/issues"
},
"browserslist": [
"last 5 years",
"android >= 2",
"bb >= 6",
"chrome >= 21",
"edge >= 12",
"firefox >= 28",
"ie >= 8",
"ios >= 6",
"op_mini all",
"op_mob >= 12",
"opera >= 12",
"safari >= 6",
"samsung >= 5"
],
"resolutions": {
"eslint-scope": "3.7.1"
},
"dependencies": {
"@netbek/finch": "0.0.10",
"regression": "2.0.1",
"vega-embed": "6.6.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
"@babel/plugin-transform-object-assign": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"autoprefixer": "9.7.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"clean-css-cli": "4.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-dollar-sign": "1.0.2",
"eslint-plugin-html": "6.0.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "23.0.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"gh-pages": "2.2.0",
"node-sass-chokidar": "1.4.0",
"postcss-cli": "7.1.0",
"prettier": "2.0.4",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11"
}
}