-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 866 Bytes
/
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
{
"name": "@scidian/iris",
"version": "1.0.5",
"description": "Color library with support for RGB, RYB, HSL color models and RYB hue shifting.",
"module": "src/Iris.js",
"main": "build/iris.module.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"build/*"
],
"keywords": [
"color",
"rgb",
"ryb",
"hue",
"shift",
"threejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevinz/iris.git"
},
"author": "Stephens Nunnally <stephens@scidian.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevinz/iris/issues"
},
"homepage": "https://github.com/stevinz/iris",
"devDependencies": {
"rollup": "^2.58.0"
},
"private": false,
"directories": {
"example": "example"
}
}