-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
58 lines (56 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "image-color-utils",
"version": "1.3.5",
"description": "Operate image pixels, such as pickup color, color contrast, etc",
"main": "./build/index.js",
"module": "./build/index.es.js",
"typings": "./build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c",
"dev": "npx rollup -c -w"
},
"author": "AwesomeDevin <awesomedevin.deng@gmail.com>",
"license": "MIT",
"files": [
"build/"
],
"keywords": [
"pick",
"color",
"compare",
"pick color",
"Color similarity"
],
"dependencies": {
},
"repository": "https://github.com/o2team/image-color-utils",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-live-server": "^1.0.3",
"babel-plugin-tester": "^10.1.0",
"eslint": "^7.22.0",
"rollup": "2.41.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.8.1",
"tslint": "^6.1.3",
"typescript": "^5.8.3",
"promises-aplus-tests": "^2.1.2",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/generator": "^7.15.4",
"@babel/helper-plugin-utils": "^7.14.5",
"@babel/parser": "^7.15.5",
"@babel/template": "^7.15.4",
"@babel/traverse": "^7.15.4",
"@babel/types": "^7.15.4"
},
"eslintIgnore": [
".eslintrc.js"
]
}