-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "phi-color",
"version": "1.2.0",
"description": "Generate random colors with a given sphere in the HCL color space using the Golden Ratio",
"main": "phi-color.cjs.js",
"jsnext:main": "phi-color.es.js",
"scripts": {
"clean": "rimraf phi-color.cjs.js phi-color.es.js",
"build": "npm run clean && npm run build:cjs && npm run build:es",
"build:cjs": "rollup -o phi-color.cjs.js -f cjs -i index.js",
"build:es": "rollup -o phi-color.es.js -f es -i index.js",
"prepublishOnly": "npm run build"
},
"files": [
"phi-color.cjs.js",
"phi-color.es.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stamen/phi-color.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/stamen/phi-color/issues"
},
"homepage": "https://github.com/stamen/phi-color#readme",
"dependencies": {
"chroma-js": "^2.4.2"
},
"devDependencies": {
"rimraf": "^3.0.2",
"rollup": "^3.2.5"
}
}