-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 933 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
{
"name": "@americana/color-unclasher",
"version": "1.0.0-alpha.0",
"type": "module",
"description": "Help developers making their Maplibre style specifications more accessible to users with color blindness",
"main": "index.js",
"bin": {
"color-unclasher": "./src/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"verbose": true
},
"author": "",
"license": "ISC",
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^20.2.0",
"chroma-js": "^2.4.2",
"color": "^4.2.3",
"color-blind": "^0.1.3",
"inquirer": "^9.2.23",
"prettier": "^3.3.2",
"tinycolor2": "^1.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}