forked from Qix-/color
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.05 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
{
"name": "chartjs-color",
"version": "2.4.1",
"description": "Color conversion and manipulation with CSS string support",
"keywords": [
"color",
"colour",
"css"
],
"authors": [
"Heather Arthur <[email protected]>",
"Maxime Thirouin",
"Josh Junon"
],
"license": "MIT",
"repository": "chartjs/chartjs-color",
"xo": {
"envs": [
"browser",
"node"
],
"rules": {
"one-var": [
2,
{
"initialized": "never"
}
],
"linebreak-style": 0,
"no-cond-assign": 0,
"new-cap": 0
}
},
"files": [
"CHANGELOG.md",
"LICENSE",
"index.js"
],
"scripts": {
"pretest": "xo",
"test": "mocha"
},
"dependencies": {
"color-convert": "^1.9.3",
"chartjs-color-string": "^0.6.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"gulp-streamify": "^1.0.2",
"mocha": "^6.0.2",
"vinyl-source-stream": "^2.0.0",
"xo": "^0.12.1"
}
}