-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "item-quantity-dropdown",
"version": "2.1.0",
"description": "Dropdown to select items with quantities",
"main": "lib/item-quantity-dropdown.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --inline --progress --colors",
"build": "NODE_ENV=production webpack -p --progress --colors",
"lint": "yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint --fix && yarn stylelint --fix",
"eslint": "eslint src webpack.config.js",
"stylelint": "stylelint 'src/**/*.s+(a|c)ss'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/reserbus/item-quantity-dropdown",
"keywords": [
"jquery-plugin",
"ecosystem:jquery"
],
"author": "Juan Miguel Rubio",
"license": "MIT",
"dependencies": {
"jquery": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"css-loader": "^1.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}