-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.01 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
{
"name": "mc_picker",
"version": "1.1.31",
"description": "Mc Picker, a minimal color picker",
"author": "Ron Valstar",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"start": "run-p build serve",
"build": "run-s clean \"webpack -- --env development --watch\"",
"build:prod": "run-s clean \"webpack -- --env production\"",
"webpack": "npx webpack --config webpack.config.js",
"clean": "del-cli dist -f",
"serve": "node task/serve docs 5132",
"test": "cypress",
"test:watch": "cypress open",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prepare": "husky install"
},
"optionalDependencies": {
"cypress": "^12.17.1"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "7.2.0",
"autoprefixer": "^9.7.1",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"body-parser": "^1.18.2",
"chokidar-cli": "^2.0.0",
"css-loader": "^6.8.1",
"css-properties-values": "^1.0.0",
"cypress-plugin-tab": "^1.0.5",
"del-cli": "^5.0.0",
"eslint": "^8.45.0",
"eslint-plugin-custom-rules": "file:.eslint",
"eslint-plugin-cypress": "^2.12.1",
"express": "^4.18.2",
"filemanager-webpack-plugin": "^8.0.0",
"html-loader": "^0.5.5",
"html-minifier": "^4.0.0",
"husky": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"npm-run-all": "^4.1.5",
"open": "^6.4.0",
"rimraf": "^2.6.1",
"serve-static": "^1.13.2",
"style-loader": "^3.3.3",
"webpack": "^5.36.2",
"webpack-cli": "^4.10.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"repository": {
"type": "git",
"url": "https://github.com/Sjeiti/clr.git"
},
"keywords": [
"colorpicker",
"color",
"ui",
"rgb",
"minimal",
"small"
],
"homepage": "https://sjeiti.github.io/clr/"
}