-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "@snipshot/spectrum",
"version": "0.2.1",
"description": "Spectrum is a lightweight JS / TS library designed to simplify color manipulation and conversion tasks within the RGB, HSL, and HEX color spaces",
"source": "src/index.ts",
"main": "lib/main.js",
"types": "lib/types.d.ts",
"module": "lib/module.js",
"sideEffects": false,
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint .",
"check": "tsc --noEmit",
"ci": "npm run check && npm run lint && npm run test && npm run build"
},
"jest": {
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linkerin/spectrum.git"
},
"keywords": [
"spectrum",
"color",
"rgb",
"hsl",
"hex"
],
"author": "Alexei Gusev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Linkerin/spectrum/issues"
},
"homepage": "https://spectrum.snipshot.dev/",
"devDependencies": {
"@parcel/packager-ts": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"parcel": "^2.9.3",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}