-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 4.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@phun-ky/moebius",
"version": "1.0.6",
"description": "Automatically generate color palettes!",
"main": "dist/moebius.js",
"types": "dist/moebius.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings\" \"./src/**/__tests__/**/*.[jt]s\"",
"pretest-ci": "rm -rf coverage && mkdir -p coverage",
"test-ci": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"./src/**/__tests__/**/*.[jt]s\"",
"rollup": "rollup -c",
"prerollup:dev": "npm run clean",
"rollup:dev": "rollup -c -w",
"clean": "rm -rf dist dts",
"build": "npm run clean && npm run rollup",
"dev": "npx browser-sync start --server 'dev' --files 'dist' --ss 'dist'",
"docs:gen": "node ./node_modules/.bin/typedoc --entryPoints src --entryPointStrategy expand --gitRevision main --githubPages false --plugin typedoc-plugin-markdown --tsconfig tsconfig.json --hideInPageTOC --out api --readme none",
"style:lint": "./node_modules/.bin/eslint -c ./.eslintrc --max-warnings=0 src --ignore-path .gitignore ",
"style:format": "prettier-eslint --config .prettierrc --eslint-config-path $PWD/.eslintrc --list-different --write \"./src/**/*.ts\"",
"style:code": "npx putout src",
"commit": "npx git-cz",
"release": "release-it"
},
"files": [
"/dist/moebius.js",
"/dist/moebius.js.map",
"/dist/moebius.d.ts"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/phun-ky/moebius.git"
},
"keywords": [
"css",
"design",
"palette",
"palettes",
"color",
"colors",
"generation",
"javascript",
"complement",
"interpolate",
"monochrome",
"monochromatic",
"triad",
"triadic",
"tetrad",
"tetradic",
"hexad",
"hexadic",
"pentad",
"pentadic",
"split",
"chrome",
"chroma",
"chromatic",
"analogous"
],
"author": "Alexander Vassbotn Røyne-Helgesen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/phun-ky/moebius/issues"
},
"homepage": "https://github.com/phun-ky/moebius#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.1",
"cobertura": "^1.0.1",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"git-cz": "^4.9.0",
"glob": "^10.3.10",
"global-jsdom": "^24.0.0",
"jsdom": "^24.0.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"putout": "^35.1.0",
"quibble": "^0.9.1",
"release-it": "^17.1.1",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"stylus": "^0.63.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"tsx": "^4.7.1",
"typedoc": "^0.25.8",
"typedoc-plugin-frontmatter": "^0.0.2",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.16",
"typedoc-plugin-no-inherit": "^1.4.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.0.0"
},
"dependencies": {
"chroma-js": "^2.4.2",
"nearest-color": "^0.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"engines": {
"node": ">=20.11.1",
"npm": ">=10.2.4"
}
}