-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
{
"name": "trucolor",
"version": "0.7.1",
"description": "TTY color toolkit supporting Truecolor (24bit RGB)",
"author": "Mark Griffiths <mark@thebespokepixel.com> (http://thebespokepixel.com/)",
"main": "index.js",
"module": "index.mjs",
"dependencies": {
"@thebespokepixel/es-tinycolor": "^0.3.0",
"@thebespokepixel/meta": "^0.2.2",
"@thebespokepixel/string": "^0.5.1",
"color-convert": "^1.9.3",
"common-tags": "^1.8.0",
"deep-assign": "^2.0.0",
"escape-string-regexp": "^1.0.5",
"lodash": "^4.17.10",
"read-pkg-up": "^4.0.0",
"sgr-composer": "^0.5.0",
"term-ng": "^0.8.1",
"truwrap": "^0.8.0",
"update-notifier": "^2.5.0",
"verbosity": "^0.9.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"ava": "^0.25.0",
"babel-plugin-lodash": "^3.3.4",
"documentation": "^8.0.0",
"documentation-theme-bespoke": "^0.3.5",
"gulp": "^4.0.0",
"gulp-better-rollup": "^3.2.1",
"gulp-chmod": "^2.0.0",
"gulp-rename": "^1.3.0",
"gulp-strip-comments": "^2.5.2",
"nyc": "^12.0.2",
"rollup-plugin-babel": "^4.0.0-beta.5",
"semver-regex": "^2.0.0",
"shelljs": "^0.8.2",
"xo": "^0.21.1"
},
"engines": {
"node": ">=8.0"
},
"homepage": "https://github.com/MarkGriffiths/trucolor",
"keywords": [
"color",
"24bit",
"truecolor",
"SGR",
"ansi",
"command line",
"fish"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MarkGriffiths/trucolor.git"
},
"scripts": {
"test": "xo && nyc ava",
"generate-test-fixtures": "scripts/generate-test-fixtures",
"generate-test-widths": "scripts/generate-test-widths",
"doc-serve": "documentation serve --watch --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --name $npm_package_name --project-version $npm_package_version src/index.js",
"doc-build": "documentation build --format html --output docs --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --name $npm_package_name --project-version $npm_package_version src/index.js",
"readme": "compile-readme -u src/docs/example.md src/docs/readme.md > readme.md",
"coverage": "nyc ava && nyc report --reporter=lcov --report-dir test/coverage; open test/coverage/lcov-report/index.html"
},
"xo": {
"semicolon": false,
"ignores": [
"bin/**/*",
"lib/**/*",
"docs/**",
"test/coverage/**",
"index.js"
]
}
}