-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 904 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
39
40
{
"name": "@apollo-tech/random-color",
"repository": {
"type": "git",
"url": "https://github.com/steven-t-h/random-color-generator"
},
"version": "0.0.4",
"private": false,
"description": "A simple random color generator",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "tsup",
"prepublish": "npm run build",
"preversion": "npm test",
"deploy": "npm run build && npm publish --access public"
},
"keywords": [
"random",
"color",
"generator",
"typescript"
],
"author": "Steven Hall",
"license": "CC0",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}