-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "color-blend",
"version": "4.0.0",
"description": "Blends RGBA colors with different blend modes",
"keywords": [
"blend",
"color",
"colour"
],
"repository": "Loilo/color-blend",
"license": "MIT",
"author": "Florian Reuschel <[email protected]>",
"files": [
"dist",
"unit",
"explanation.png"
],
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "microbundle --entry src/index.ts --output dist/index.js && microbundle --entry src/unit.ts --output unit/index.js --format modern,cjs,umd",
"pretest": "eslint \"src/*.ts\" && npm run build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.1",
"microbundle": "^0.15.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=10.0.0"
},
"sideEffects": false
}