-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 851 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
{
"name": "prismaek",
"version": "0.2.0",
"description": "Generate colors and color schemes using maths.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run jest",
"jest": "jest --verbose ./tests/",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "npx prettier --check .",
"lint-fix": "echo \"Linting with Prettier...\" && npx prettier --write ."
},
"author": "Michael Sterpka <[email protected]> (https://github.com/mster)",
"license": "MIT",
"keywords": [
"color",
"scheme",
"tint",
"tone",
"shade",
"harmony",
"complementary",
"generate"
],
"jest": {
"testRegex": "./tests/test..*.js$"
},
"devDependencies": {
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"prettier": "2.3.0"
},
"dependencies": {}
}