forked from stayradiated/termcolors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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": "termcolors",
"version": "0.5.0",
"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": "^3.5.0",
"gulp": "^3.9.1",
"gulp-brfs": "0.1.0",
"mocha": "^3.4.1",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"colr": "^1.2.2",
"commander": "^2.9.0",
"concat-stream": "^1.6.0",
"dot": "^1.1.1",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4"
}
}