-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "color-name-list",
"version": "0.0.0-development",
"description": "long list of color names",
"main": "dist/colornames.json",
"browser": "dist/colornames.umd.js",
"scripts": {
"commit": "git-cz",
"pull-colors": "curl 'https://docs.google.com/spreadsheets/d/e/2PACX-1vQube6Y0wHyEtJnjg0eU3N7VseoxVnD4L9uDqvWZdl_tzzrHDVN10IPP7cdFipX8j70atNMLfPCB0Q6/pub?gid=40578722&single=true&output=csv' -o src/colornames.csv",
"test": "node scripts/build.js --testOnly",
"clean-dist-folder": "rm -rf dist && mkdir dist",
"build": "npm run clean-dist-folder && node scripts/build.js",
"start": "node scripts/server.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/meodai/color-names.git"
},
"keywords": [
"colors",
"color",
"names",
"naming"
],
"author": "meodai@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/meodai/color-names/issues"
},
"homepage": "https://uvacoder.github.io/color-names/",
"devDependencies": {
"closestvector": "^0.6.0",
"commitizen": "^4.2.4",
"eslint": "^5.15.1",
"eslint-config-google": "^0.10.0",
"ghooks": "^2.0.4",
"semantic-release": "^17.4.2",
"spellchecker": "^3.7.1"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run build"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}