-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "palettron",
"version": "1.0.0",
"description": "Manipulate palettes of colors in wonderful ways",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"cover": "tap --ts --coverage-report=html --no-browser",
"clean": "rm -f index.js index.d.ts",
"prepare": "npm run test-ts && npm run build",
"test": "npm run build && tap --ts --no-coverage",
"test-ts": "npm run clean && tap --ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jabney/palettron.git"
},
"keywords": [
"palette",
"color",
"colord",
"css",
"chart"
],
"author": "James Abney",
"license": "ISC",
"bugs": {
"url": "https://github.com/jabney/palettron/issues"
},
"homepage": "https://github.com/jabney/palettron#readme",
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"colord": "^2.9.2",
"seedable": "^1.0.5"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/tap": "^15.0.7",
"tap": "^16.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}