-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.46 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"version": "0.15.0",
"author": "Rafael Ramos <[email protected]>",
"bundleDependencies": false,
"scripts": {
"start": "http-server dist/ -p $PORT",
"prod": "npm run build && http-server dist/ -p 8000 -o",
"heroku-postbuild": "npm run build",
"build": "npm run rimraf ./dist && NODE_ENV=production webpack --colors",
"devserver": "webpack-dev-server --colors --open",
"karmadev": "karma start karma.config.js",
"test": "cross-env NODE_ENV=test karma start karma.config.js --single-run",
"dev": "npm-run-all -p devserver karmadev",
"coverage": "cat coverage/report-lcovonly.txt | coveralls",
"rimraf": "rimraf"
},
"dependencies": {
"@boldgrid/components": "^2.14.0",
"@material/switch": "^0.36.1",
"Buttons": "https://github.com/alexwolfe/Buttons",
"Iris": "git+https://github.com/Automattic/Iris.git#master",
"animate.css": "^3.5.2",
"color": "git+https://github.com/Automattic/Color.js.git",
"color-js": "^1.0.4",
"deepmerge": "^3.0.0",
"eventemitter3": "^3.1.0",
"google-material-color-palette-json": "^2.0.1",
"jquery": "1.*",
"material-components-web": "^0.36.1",
"select2": "^4.0.6-rc.1",
"sass.js": "0.10.9",
"title-case": "^2.1.1",
"url-loader": "^1.0.1"
},
"deprecated": false,
"description": "BoldGrid Controls",
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-eslint": "^8.0.1",
"babel-loader": "^8.0.0-beta",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"core-js": "^2.5.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"css-loader": "^1.0.0",
"ejs-loader": "^0.3.1",
"eslint": "^5.0.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-minifier": "^3.5.2",
"html-webpack-plugin": "^3.0.0",
"http-server": "^0.11.0",
"jasmine": "^3.0.0",
"jasmine-core": "^3.0.0",
"jshint": "^2.9.4",
"jshint-loader": "^0.8.4",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.1",
"nyc": "^12.0.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass-loader": "^7.0.0",
"standard": "^11.0.0",
"style-loader": "^0.21.0",
"stylelint": "^9.1.2",
"stylelint-config-standard": "^18.0.0",
"stylelint-webpack-plugin": "^0.10.3",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.1.1"
},
"engines": {
"node": ">=6"
},
"license": "GPL-2.0",
"main": "src/controls/index.js",
"name": "@boldgrid/controls",
"repository": {
"type": "git",
"url": "git+https://github.com/BoldGrid/controls.git"
},
"bugs": {
"url": "https://github.com/BoldGrid/controls/issues"
},
"homepage": "https://github.com/BoldGrid/controls#readme",
"directories": {
"test": "test"
},
"greenkeeper": {
"ignore": [
"jquery"
]
}
}