-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "@famebot/chromagen",
"version": "1.0.3",
"description": "Color scheme generator",
"type": "module",
"source": "./src/index.js",
"exports": {
"default": "./dist/chromagen.modern.js",
"require": "./dist/chromagen.cjs"
},
"main": "./dist/chromagen.cjs",
"module": "./dist/chromagen.module.js",
"umd:main": "./dist/chromagen.umd.js",
"unpkg": "./dist/chromagen.umd.js",
"scripts": {
"build": "microbundle && cp dist/chromagen.umd.js examples/browser",
"dev": "microbundle watch",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js",
"release": "npm run build && bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish --access public",
"test": "mocha"
},
"author": "Ricky de Laveaga (https://rdela.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/famebot/chromagen.git"
},
"bugs": {
"url": "https://github.com/famebot/chromagen/issues"
},
"homepage": "https://github.com/famebot/chromagen#readme",
"keywords": [
"chroma",
"hsl",
"gen",
"generate",
"color",
"scheme"
],
"devDependencies": {
"bumpp": "^9.4.0",
"conventional-changelog-cli": "^5.0.0",
"microbundle": "^0.15.1",
"mocha": "^11.0.1",
"prettier": "^3.2.5"
}
}