-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.34 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
{
"name": "cimico",
"version": "0.0.3",
"description": "Another logging library",
"main": "index.js",
"keywords": [
"logging",
"debug",
"debuging",
"callsites"
],
"scripts": {
"test": "mocha tests/*.spec.js",
"mocha": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/akshendra/cimico.git"
},
"author": "Akshendra Pratap Singh <akshendra@zoho.com>",
"license": "ISC",
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.2",
"xo": "^0.18.2"
},
"dependencies": {
"callsites": "^2.0.0",
"chalk": "^1.1.3",
"figures": "^2.0.0",
"immutable": "^3.8.1",
"is_js": "^0.9.0",
"moment": "^2.18.1",
"pretty-error": "^2.1.1",
"prettyjson": "^1.2.1",
"ramda": "^0.24.1"
},
"xo": {
"env": [
"node",
"mocha"
],
"space": 2,
"rules": {
"no-unused-expressions": 0,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"func-names": 0,
"object-curly-spacing": 0,
"new-cap": 0,
"prefer-arrow-callback": 0,
"camelcase": [
"error",
{
"properties": "never"
}
]
}
}
}