forked from shakee93/toastedjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "toastedjs",
"description": "Javascript Toast Plugin - Easy, Responsive and Touch Compatible",
"version": "0.0.2",
"author": "Shakeeb Sadikeen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shakee93/toastedjs.git"
},
"main": "./src/index.js",
"scripts": {
"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"
}
}