-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
126 lines (126 loc) · 3.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "palettify",
"description": "Configurable JavaScript plugin to extract image primary colors and apply cool effects to it.",
"version": "1.0.3",
"author": {
"name": "Dobromir Hristov"
},
"bugs": {
"url": "https://github.com/dobromir-hristov/palettify/issues"
},
"devDependencies": {
"@mariotacke/color-thief": "^3.0.1",
"autoprefixer": "^7.1.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-power-assert": "^1.0.0",
"buble": "^0.14.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-github-releaser": "^1.1.3",
"cz-conventional-changelog": "^2.0.0",
"es6-promise": "^4.2.4",
"eslint": "^3.14.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.3.0",
"foundation-sites": "^6.4.1",
"fs-extra": "^3.0.1",
"gitbook-cli": "^2.3.2",
"html-webpack-plugin": "^2.28.0",
"img-palette": "^0.3.2",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"micromustache": "^5.2.0",
"mocha": "^3.2.0",
"mocha-loader": "^1.1.1",
"node-sass": "^4.9.0",
"phantomjs-prebuilt": "^2.1.14",
"postcss": "^6.0.6",
"power-assert": "^1.4.2",
"rollup": "^0.36.4",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-legacy": "^1.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-sass": "^0.5.3",
"rollup-watch": "^4.0.0",
"sass-loader": "^6.0.6",
"uglify-js": "^2.7.5",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"yargs-parser": "^7.0.0"
},
"files": [
"dist/palettify.js",
"dist/palettify.min.js",
"dist/palettify.common.js",
"dist/palettify.esm.js",
"dist/palettify.min.css",
"dist/palettify.standalone.js",
"dist/palettify.standalone.min.js",
"dist/palettify.styles.min.js",
"src"
],
"homepage": "https://github.com/dobromir-hristov/palettify#readme",
"main": "dist/palettify.common.js",
"browser": "dist/palettify.js",
"module": "dist/palettify.esm.js",
"unpkg": "dist/palettify.js",
"keywords": [
"plugin",
"es6",
"es2015",
"image-palette",
"primary-color",
"palettify"
],
"license": "MIT",
"engines": {
"node": ">= 6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dobromir-hristov/palettify.git"
},
"scripts": {
"build": "node config/build.js && npm run docs:build",
"dev": "webpack-dev-server --inline --config config/webpack.dev.conf.js",
"release": "standard-version -a",
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
"docs": "docsify serve docs",
"docs:build": "node config/version.js",
"lint": "eslint src config"
},
"dependencies": {
"config-chain": "^1.1.11",
"deepmerge": "^1.4.4",
"jsonfile": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"scripts": {
"postchangelog": "npm run build && git add -A"
}
}
}