This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "v-color",
"version": "1.1.2",
"description": "Chrome-flavored color picker in Vue.js",
"keywords": [
"color-picker",
"chrome-flavored"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"server": "browser-sync start --server --port 1126 --reload-delay 1 --files \"index.html, ./dist/**\"",
"build:watch": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
"build:dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"start": "run-p build:watch server"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"cross-env": "^3.1.4",
"npm-run-all": "^4.0.1",
"postcss-cssnext": "^3.1.0",
"rollup": "^0.59.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-postcss": "^1.6.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-vue": "^2.2.20"
},
"dependencies": {
"invariant": "^2.2.4",
"lodash": "^4.17.10",
"object-assign": "^4.1.1",
"pure-color": "^1.3.0",
"v-ctrl": "^1.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/v-comp/v-color.git"
},
"bugs": {
"url": "https://github.com/v-comp/v-color/issues"
},
"homepage": "https://github.com/v-comp/v-color#readme",
"author": "wemlion <angusfu1126@qq.com>"
}