This repository was archived by the owner on Sep 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.25 KB
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
{
"name": "@findbycolor/color-library",
"version": "1.2.0",
"description": "Internal Tool to Generate Industry Color Libraries",
"main": "./bin/cli.js",
"license": "unlicensed",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": {
"color-library": "./bin/cli.js"
},
"engines": {
"node": ">=14.17.3",
"npm": ">= 6.14.13"
},
"scripts": {
"start": "./node_modules/.bin/concurrently 'npm run dev' 'http-server -a localhost -p 8081' 'open http://localhost:8081/index.html'",
"build": "./node_modules/.bin/babel src -d dist",
"test": "npm run -s lint",
"lint": "standard --fix",
"dev": "nodemon --watch src --watch bin --watch commands --exec npm run build",
"prepublish": "npm run lint && npm run build",
"postinstall": "npm run build",
"pack": "jszip -c .jszip.json &> /dev/null && echo '✓ Libraries Packed'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FindByColor/color-library.git"
},
"bugs": {
"url": "https://github.com/FindByColor/color-library/issues"
},
"keywords": [],
"author": {
"name": "Peter Schmalfeldt",
"email": "peter@findbycolor.com",
"url": "https://findbycolor.com"
},
"homepage": "https://github.com/FindByColor/color-library#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"chroma-js": "^2.1.2",
"color-harmony": "^0.3.0",
"md5": "^2.3.0",
"rimraf": "^3.0.2",
"sanitize-html": "^2.5.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.3.4",
"concurrently": "^6.4.0",
"http-server": "^14.0.0",
"jszip-cli": "^1.4.24",
"mocha": "^9.1.2",
"nodemon": "^2.0.13",
"pre-commit": "^1.2.2",
"sinon": "^11.1.2",
"standard": "^16.0.4"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": [
"viewer/js/*.js"
]
}
}