-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
{
"name": "css-color-shifter",
"version": "1.1.0",
"description": "Tool to consistently change CSS colors from a stylesheet or raw text",
"main": "ColorShifterUI.js",
"scripts": {
"install": "git submodule update --init --recursive && cd build && git checkout gh-pages && git branch -d master || true",
"fix-js": "eslint --fix --ext .js,.jsx ./app || true",
"lint-js": "eslint --ext .js,.jsx ./app || true",
"dev": "cross-env PORT=8181 webpack-dev-server --host 0.0.0.0 --open --public localhost:8181",
"build": "cross-env NODE_ENV=production webpack --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bassarisse/css-color-shifter.git"
},
"keywords": [
"css",
"color",
"rgb",
"hsl"
],
"author": "Bruno Assarisse <bruno@assarisse.com.br> (http://bassarisse.com/)",
"license": "ISC",
"homepage": "https://bassarisse.github.io/css-color-shifter",
"dependencies": {
"css-color-names": "^0.0.4",
"csso": "^3.1.1",
"emotion": "^6.0.3",
"js-beautify": "^1.6.14",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-stateless-component-name": "^1.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.29.0",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
}
}