-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 795 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 795 Bytes
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
{
"name": "material-color-tool",
"version": "1.1.0",
"description": "Generate a spec-compliant Material Design palette from a source color",
"main": "lib/index.js",
"scripts": {
"test": "jest"
},
"repository": "Ignigena/material-color-tool",
"author": "Albert Martin <albert@imor.tl>",
"license": "MIT",
"engines": {
"node": ">=12.x"
},
"dependencies": {
"color-convert": "github:Ignigena/color-convert#fix/precision",
"color-diff": "^1.1.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0"
}
}