-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 2.59 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "wpvip-cli",
"description": "Official CLI tools for WordPress.com VIP",
"version": "0.16.0-dev",
"author": "Automattic, Inc.",
"contributors": [
"Nick Daugherty <ndaugherty987@gmail.com>",
"Josh Betz <j@joshbetz.com>"
],
"keywords": [
"wordpress",
"wordpress.com",
"wordpress.com vip",
"vip",
"cli"
],
"repository": "git@github.com:Automattic/vip-cli.git",
"license": "MIT",
"engines": {
"node": ">=0.12"
},
"scripts": {
"postinstall": "tabtab install --name vip --auto || echo 'Note: Could not install tab completions, moving on...'",
"postuninstall": "./scripts/postuninstall",
"prepublish": "npm run build",
"build": "babel -q src --out-dir=build",
"build:watch": "babel src --out-dir=build --watch",
"test": "eslint src test"
},
"main": "build/index.js",
"bin": {
"vip": "build/bin/vip.js"
},
"dependencies": {
"async": "^1.5.2",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commander": "2.9.0",
"node-pv": "^0.1.5",
"progress": "^1.1.8",
"promptly": "1.0.0",
"shell-escape": "^0.2.0",
"single-line-log": "^1.1.2",
"superagent": "^2.0.0",
"tabtab": "^2.0.0",
"throttle": "^1.0.3",
"update-notifier": "^1.0.3",
"vip": "automattic/vip-js-sdk",
"which": "^1.2.10"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.15.0",
"eslint-plugin-json": "^1.2.0"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"plugins": [
"json"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"curly": [
"error",
"multi-line"
],
"eqeqeq": [
"warn",
"allow-null"
],
"key-spacing": [
"warn"
],
"no-console": [
"off"
],
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"no-control-regex": [
"warn"
],
"no-unused-vars": [
"warn",
{
"args": "none"
}
],
"no-undef": [
"error"
],
"quotes": [
"warn",
"single",
"avoid-escape"
],
"semi": [
"error",
"always"
],
"space-in-parens": [
"error",
"always",
{
"exceptions": [
"{}"
]
}
]
},
"globals": {}
}
}