-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "chromanomer",
"version": "1.0.4",
"description": "A Javascript Library enabling Universally Accessible Color Selection through Intutive Naming Conventions.",
"source": "index.js",
"main": "dist/cono.js",
"module": "dist/cono.module.js",
"esmodule": "dist/cono.modern.js",
"umd:main": "dist/cono.umd.js",
"style": "style/_cono.scss",
"bin": {
"cono": "./bin/index.js"
},
"files": [
"bin",
"dist",
"generator",
"lang",
"utility",
"style"
],
"keywords": [
"color-scheme",
"comparative",
"color",
"color-system",
"naming-conventions",
"chroma",
"nomenclature",
"design",
"naming-system",
"adjective",
"cono",
"hsluv"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arvindcheenu/chromanomer.git"
},
"bugs": {
"url": "https://github.com/arvindcheenu/chromanomer/issues"
},
"homepage": "https://arvindcheenu.github.io/Chromanomer/",
"scripts": {
"start": "node index.js",
"cli": "node bin/index.js",
"test": "ava",
"coverage": "nyc npm run test",
"demo": "node-sass demo/scss/ -o demo/css/",
"cloc": "npx cloc ./ > cloc.txt",
"build": "microbundle --name Cono --compress",
"dev": "microbundle watch"
},
"ava": {
"require": [
"esm"
],
"files": [
"test/*.test.js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"verbose": true
},
"author": "Arvind Srinivasan <arvind@cheenu.net>",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.0",
"color-blind": "^0.1.1",
"hsluv": "^0.1.0",
"matercolors": "^1.2.1",
"nearest-color": "^0.4.4",
"node-sass": "^5.0.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"ava": "^3.13.0",
"babel-preset-env": "^1.7.0",
"esm": "^3.2.25",
"microbundle": "^0.12.4",
"nyc": "^15.1.0"
}
}