-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 902 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
35
36
37
38
39
40
41
42
{
"name": "@helpscout/colorway",
"version": "0.10.0",
"description": "A color management syncing system",
"main": "src/index.js",
"bin": {
"colorway": "src/index.js"
},
"private": false,
"scripts": {
"prestart": "zero prestart",
"build": "node src/generate.js",
"lint": "zero lint",
"test": "zero test",
"format": "zero format",
"validate": "zero validate",
"release": "zero release --yolo",
"version": "npm run build && git add .",
"precommit": "zero pre-commit"
},
"files": [
"src",
"data",
"manifests",
"README.md",
"LICENSE"
],
"license": "MIT",
"devDependencies": {
"@helpscout/zero": "3.3.0",
"prettier": "^1.19.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"nearest-color": "^0.4.4",
"fast-glob": "^3.2.4"
}
}