-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.32 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
{
"name": "tough",
"version": "0.6.0",
"description": "Tough is a tough element selector which doesn't really give a shit about changing class names and IDs!",
"main": "dist/index.js",
"scripts": {
"test": "yarn test",
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "yarn run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "yarn run build && yarn run deploy",
"v:patch": "npm version patch --force",
"v:minor": "npm version minor --force",
"v:major": "npm version major --force"
},
"repository": "https://github.com/Alireza29675/tough.git",
"author": "Alireza Sheikholmolouki <alireza.sheikholmolouki@gmail.com> (https://github.com/Alireza29675)",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-regenerator": "^7.4.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.1.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"color-rgba": "^2.1.1"
}
}