-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "gemidao-do-zap",
"version": "0.1.2",
"description": "Uma aplicação de linha de comando que liga para alguém tocando o gemidão do Zap",
"bin": {
"gemidao-do-zap": "./dist/cli.js"
},
"main": "dist/index.js",
"repository": "https://github.com/haskellcamargo/gemidao-do-zap.git",
"author": "Marcelo Camargo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel ./src -d ./dist",
"lint": "xo src/**",
"prepublish": "npm run build"
},
"dependencies": {
"bluebird": "^3.5.0",
"colors": "^1.1.2",
"ramda": "0.24.1",
"superagent": "^3.5.2",
"superagent-promise": "^1.1.0",
"yargs": "8.0.2"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-preset-es2015": "6.24.1",
"xo": "0.18.2"
},
"xo": {
"esnext": true,
"space": 4,
"rules": {
"camelcase": [
"off"
],
"no-restricted-syntax": [
"error",
"ForStatement",
"WhileStatement",
"SwitchStatement",
"VariableDeclaration[kind='var']",
"VariableDeclaration[kind='let']",
"TryStatement"
],
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"before"
]
}
}
}