-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.3 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.3 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
{
"name": "material-design-inspired-color-picker",
"version": "1.7.2",
"description": "A color picker inspired by material design. It is highly customizable and supports custom colors and palettes.",
"main": "dist/md-color-picker.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/md-color-picker.js && rimraf docs/md-color-picker.js && cross-env NODE_ENV=production rollup -c",
"dev": "rimraf docs/md-color-picker.js && cross-env NODE_ENV=develop rollup -c -w"
},
"author": "Benjamin Franz",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/BennyAlex/material-design-inspired-color-picker.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.0.5",
"rimraf": "2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "2.0.1",
"rollup-plugin-vue": "^2.5.2",
"rollup-watch": "4.3.1",
"uglify-es": "3.1.3",
"vue": "^2.4.4",
"vue-custom-element": "^1.3.0",
"vue-template-compiler": "^2.4.4"
}
}