-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
91 lines (91 loc) · 1.92 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "wat",
"version": "0.1.40",
"description": "Community-controlled cheat sheets for every coder.",
"main": "./dist/index.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover -x '**/**/markterm.js' _mocha -- -R spec",
"nyc": "nyc -x '**/**/markterm.js' mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dthree/wat.git"
},
"keywords": [
"syntax",
"cheat",
"cheatsheet",
"cli",
"community"
],
"author": "dthree",
"license": "MIT",
"bugs": {
"url": "https://github.com/dthree/wat/issues"
},
"homepage": "https://github.com/dthree/wat#readme",
"bin": {
"wat": "./bin/index.js"
},
"devDependencies": {
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-changed": "^1.3.0",
"gulp-eslint": "^1.0.0",
"gulp-util": "^3.0.6",
"istanbul": "^0.3.22",
"mocha": "^2.2.5",
"nyc": "^3.2.2",
"should": "^7.1.0"
},
"dependencies": {
"chalk": "^1.1.0",
"google": "^1.3.0",
"highlight.js": "^8.7.0",
"leven": "^1.0.2",
"lodash": "^3.10.1",
"mdast": "^1.1.0",
"mdast-strip-badges": "^1.0.0",
"minimist": "^1.1.3",
"mkdirp": "^0.5.1",
"moment": "^2.10.6",
"request": "^2.60.0",
"rimraf": "^2.4.3",
"sluggin": "^0.1.1",
"strip-ansi": "^3.0.0",
"tmp": "0.0.27",
"vorpal": "*",
"vorpal-grep": "0.0.5",
"vorpal-less": "*",
"vorpal-tour": "0.0.3",
"walk": "^2.3.9",
"wrap-ansi": "^0.2.0"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"files": [
"dist",
"bin",
"docs",
"autodocs",
"config"
],
"xo": {
"envs": [
"node",
"mocha"
],
"space": true,
"esnext": true,
"rules": {
"prefer-arrow-callback": 0,
"no-loop-func": 0,
"no-inner-declarations": 0,
"prefer-reflect": 0,
"global-require": 0
}
}
}