-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "termcolors",
"version": "0.7.3",
"description": "Convert color schemes to multiple terminal configs",
"main": "./pkg/index.js",
"scripts": {
"test": "mocha -R spec -b test/*",
"build": "gulp bundle",
"examples": "gulp examples",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/stayradiated/termcolors.git"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"keywords": [
"terminal",
"term",
"colors",
"config",
"export",
"import",
"convert",
"configuration",
"xresources"
],
"author": "George Czabania",
"license": "MIT",
"bugs": {
"url": "https://github.com/stayradiated/termcolors/issues"
},
"homepage": "https://github.com/stayradiated/termcolors",
"devDependencies": {
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-brfs": "0.1.0",
"mocha": "^3.4.1"
},
"dependencies": {
"colr": "^1.2.2",
"commander": "^4.0.1",
"concat-stream": "^2.0.0",
"dot": "^1.1.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.19"
}
}