forked from shakee93/toastedjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.54 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.54 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
{
"name": "@firstfleet/toastedjs",
"description": "Fork of toastedjs, updated to support font-awesome icons rather than material icons. Javascript Toast Plugin - Easy, Responsive and Touch Compatible",
"version": "1.0.0",
"author": "Jess Patton",
"main": "./src/index.js",
"scripts": {
"send": "npm publish --access public",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.release.js --progress --hide-modules",
"build-watch": "cross-env NODE_ENV=production webpack --config ./build/webpack.release.js --progress --hide-modules --watch",
"css": "cross-env NODE_ENV=production webpack --config ./build/webpack.release.css.js --progress --hide-modules --watch",
"release": "npm run build && npm run css",
"es": "babel src --presets babel-preset-es2015 --out-dir dist"
},
"keywords": [
"toast",
"toasted",
"toastedjs",
"vue-toasted"
],
"dependencies": {
"animejs": "^2.0.2",
"hammerjs": "^2.0.8",
"shortid": "^2.2.8",
"es6-object-assign": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-cli": "^6.23.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.3",
"style-loader": "^0.18.2",
"webpack": "^3.5.6"
}
}