-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.23 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
{
"name": "vorpal-tour",
"version": "0.0.5",
"description": "Tour users through your Vorpal app.",
"main": "./dist/tour.js",
"scripts": {
"test": "mocha && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vorpaljs/vorpal-tour.git"
},
"keywords": [
"tour",
"tutorial",
"interactive",
"api",
"cli",
"immersive",
"repl",
"vorpal",
"vorpaljs"
],
"author": "dthree",
"license": "MIT",
"bugs": {
"url": "https://github.com/vorpaljs/vorpal-tour/issues"
},
"homepage": "https://github.com/vorpaljs/vorpal-tour#readme",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-changed": "^1.3.0",
"mocha": "^2.3.3",
"should": "^7.1.0",
"vorpal": "*",
"vorpal-hacker-news": "^1.0.6",
"xo": "^0.9.0"
},
"dependencies": {
"chalk": "^1.1.1",
"strip-ansi": "^3.0.0",
"wrap-ansi": "^0.2.0"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"files": [
"dist"
],
"xo": {
"envs": [
"node",
"mocha"
],
"esnext": true,
"space": true,
"rules": {
"no-unused-expressions": 0,
"prefer-arrow-callback": 0,
"prefer-reflect": 0
}
}
}