-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "superpal",
"version": "1.2.31",
"description": "Create automatically a palette with vivid colors from a single input color for UI design and design systems.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.js",
"update-snapshots": "jest --config jest.config.js --updateSnapshot",
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"prepack": "yarn build",
"prepublish": "yarn format && yarn test && yarn lint",
"npm-login": "yarn npm login",
"publish": "yarn npm publish --access public",
"bump": "yarn test && yarn lint && yarn version -i patch && git commit -am \"Bump version\" && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jaukia/superpal.git"
},
"keywords": [
"color",
"color-palette",
"okhsl"
],
"author": "Janne Aukia",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaukia/superpal/issues"
},
"homepage": "https://github.com/jaukia/superpal#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@yarnpkg/sdks": "^3.0.0-rc.31",
"culori": "^3.1.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"hsluv": "^0.1.0",
"jest": "^28.1.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"tsup": "^6.4.0",
"typescript": "^4.7.2"
},
"files": [
"lib/**/*"
],
"packageManager": "yarn@3.3.0"
}