-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
106 lines (106 loc) · 2.3 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "cash",
"version": "0.8.0",
"description": "Cross-platform Linux commands in pure ES6.",
"main": "./dist/index.js",
"scripts": {
"test": "gulp builder; ./node_modules/istanbul/lib/cli.js cover --root './dist' -x './dist/lib/sugar.js' _mocha -- -R spec && npm run lint",
"test-win": "mocha",
"lint": "xo ./src/*.js ./src/**/*.js ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dthree/cash.git"
},
"keywords": [
"terminal",
"emulator",
"cygwin",
"cli",
"windows",
"linux",
"unix",
"posix",
"shell",
"shelljs",
"bash",
"cash",
"$",
"tty",
"util",
"vorpal",
"vorpal.js"
],
"author": "dthree",
"license": "MIT",
"bugs": {
"url": "https://github.com/dthree/cash/issues"
},
"homepage": "https://github.com/dthree/cash#readme",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"coveralls": "^2.11.6",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-eslint": "^2.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.2.5",
"shelljs": "^0.7.0",
"should": "^7.0.3",
"webpack": "^1.12.13",
"xo": "^0.12.1"
},
"bin": {
"$": "./bin/cash.js",
"cash": "./bin/cash.js"
},
"dependencies": {
"array-shuffle": "^1.0.0",
"chalk": "^1.1.0",
"filesize": "^3.1.3",
"fkill": "^4.0.0",
"fs-extra": "^0.26.7",
"glob": "^7.0.3",
"lodash": "^4.0.0",
"minimist": "^1.2.0",
"user-home": "^2.0.0",
"username": "^2.1.0",
"vorpal": "^1.10.8",
"vorpal-autocomplete-fs": "0.0.3",
"vorpal-grep": "^0.1.2",
"vorpal-less": "0.0.13",
"which": "^1.2.4"
},
"engines": {
"node": ">= 4",
"iojs": ">= 1.0.0"
},
"files": [
"commands.json",
"dist",
"bin"
],
"xo": {
"envs": [
"node",
"mocha"
],
"space": true,
"esnext": true,
"rules": {
"prefer-arrow-callback": 0,
"no-loop-func": 0,
"no-nested-ternary": 0,
"no-constant-condition": 0,
"no-use-extend-native/no-use-extend-native": 0,
"no-negated-condition": 0,
"no-inner-declarations": 0,
"prefer-reflect": 0,
"wrap-iife": 0,
"no-unused-expressions": 0,
"global-require": 0
}
}
}