-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.33 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": "color-elements",
"version": "0.0.2",
"description": "A set of web components for working with color. A Color.js project.",
"main": "index.js",
"type": "module",
"scripts": {
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"prebuild": "node _build/copy-config.js",
"build": "npm run build:html",
"watch": "run-p watch:*",
"prepack": "npm run build",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1",
"build:html": "npx @11ty/eleventy --config=_build/eleventy.js",
"watch:html": "npx @11ty/eleventy --config=_build/eleventy.js --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/color-js/elements.git"
},
"keywords": [
"color",
"color.js",
"web components"
],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/color-js/elements/issues"
},
"homepage": "https://github.com/color-js/elements#readme",
"dependencies": {
"colorjs.io": "^0.5.0",
"nude-element": "latest"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.6",
"@stylistic/eslint-plugin": "latest",
"eslint": "latest",
"globals": "latest",
"markdown-it-attrs": "^4.1.6",
"markdown-it-anchor": "^8",
"npm-run-all": "^4.1.5",
"release-it": "^17.2.0"
}
}