-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 858 Bytes
/
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
{
"name": "do0dle-colors",
"version": "2.2.0",
"description": "a library to generate color schemes.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"dev": "npx nodemon ./src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"pre-publish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do0dleman/do0dle-colors.git"
},
"files": [
"lib"
],
"keywords": [
"color schemes",
"generate colors",
"complimentary colors"
],
"author": "do0dleman",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}