Passed
Push — master ( dcc88d...0ce213 )
by Rafael
02:11 queued 01:08
created

package.json (1 issue)

Severity
1
{
2
  "version": "0.5.0",
3
  "author": "Rafael Ramos <[email protected]>",
4
  "bundleDependencies": false,
5
  "dependencies": {
6
    "@boldgrid/components": "^2.3.0",
7
    "Buttons": "https://github.com/alexwolfe/Buttons",
8
    "Iris": "git+https://github.com/Automattic/Iris.git#master",
9
    "babel-minify-webpack-plugin": "^0.2.0",
10
    "bulma": "^0.4.3",
11
    "color": "git+https://github.com/Automattic/Color.js.git",
12
    "color-js": "^1.0.4",
13
    "eslint-config-wordpress": "^2.0.0",
14
    "google-material-color-palette-json": "^2.0.1",
15
    "html-loader": "^0.5.1",
16
    "http-server": "^0.10.0",
17
    "jquery": "1.*",
0 ignored issues
show
This dependency has a security advisory: Cross-Site Scripting (XSS)
Recommendation: Upgrade to v3.0.0 or greater.
Loading history...
18
    "jshint-loader": "^0.8.4",
19
    "normalize.css": "^7.0.0",
20
    "npm-run-all": "^4.1.1",
21
    "raw-loader": "^0.5.1",
22
    "rimraf": "^2.6.1",
23
    "sass.js": "0.10.4"
24
  },
25
  "deprecated": false,
26
  "description": "BoldGrid Controls",
27
  "devDependencies": {
28
    "babel-core": "^6.22.1",
29
    "babel-eslint": "^7.2.3",
30
    "babel-loader": "^6.2.10",
31
    "babel-polyfill": "^6.26.0",
32
    "babel-preset-es2015": "^6.22.0",
33
    "babel-preset-stage-0": "^6.22.0",
34
    "copy-webpack-plugin": "^4.0.1",
35
    "core-js": "^2.5.1",
36
    "css-loader": "^0.28.0",
37
    "eslint": "^3.19.0",
38
    "eslint-loader": "^1.7.1",
39
    "eslint-plugin-html": "^2.0.3",
40
    "extract-text-webpack-plugin": "^2.1.0",
41
    "file-loader": "^0.9.0",
42
    "html-minifier": "^3.5.2",
43
    "html-webpack-plugin": "^2.28.0",
44
    "jasmine": "^2.8.0",
45
    "jasmine-core": "^2.8.0",
46
    "jshint": "^2.9.4",
47
    "karma": "^1.7.1",
48
    "karma-chrome-launcher": "^2.2.0",
49
    "karma-es6-shim": "^1.0.0",
50
    "karma-jasmine": "^1.1.0",
51
    "karma-phantomjs-launcher": "^1.0.4",
52
    "karma-spec-reporter": "^0.0.31",
53
    "karma-webpack": "^2.0.4",
54
    "node-sass": "^4.5.3",
55
    "nyc": "^11.2.1",
56
    "sass-loader": "^6.0.5",
57
    "standard": "^10.0.2",
58
    "style-loader": "^0.16.1",
59
    "url-loader": "^0.5.8",
60
    "webpack": "^3.5.6",
61
    "webpack-dev-server": "^2.4.2"
62
  },
63
  "engines": {
64
    "node": ">=6"
65
  },
66
  "license": "WTFPL",
67
  "main": "src/controls/index.js",
68
  "name": "@boldgrid/controls",
69
  "repository": {
70
    "type": "git",
71
    "url": "git+https://github.com/BoldGrid/controls.git"
72
  },
73
  "scripts": {
74
    "start": "http-server dist/ -p $PORT",
75
    "prod": "http-server dist/ -p 8000 -o",
76
    "postinstall": "npm run build",
77
    "build": "npm run rimraf ./dist && NODE_ENV=production webpack --colors",
78
    "devserver": "webpack-dev-server --colors --open",
79
    "karmadev": "karma start karma.config.js",
80
    "karma": "karma start karma.config.js --single-run",
81
    "dev": "npm-run-all -p devserver karmadev",
82
    "rimraf": "rimraf",
83
    "test": "echo \"Error: no test specified\" && exit 1"
84
  },
85
  "bugs": {
86
    "url": "https://github.com/BoldGrid/controls/issues"
87
  },
88
  "homepage": "https://github.com/BoldGrid/controls#readme",
89
  "directories": {
90
    "test": "test"
91
  }
92
}
93