-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.09 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
{
"name": "cilantrojs",
"description": "Data parsing utility for NodeJS.",
"version": "0.1.0",
"author": "Frank Robert <frankie.robert@gmail.com> ()",
"bugs": {
"url": "https://github.com/frankrobert/cilantrojs/issues",
"email": "frankie.robert@gmail.com"
},
"contributors": ["Frank Robert <frankie.robert@gmail.com> ()"],
"dependencies": {
"split2": "^2.2.0",
"through2": "^2.0.3"
},
"devDependencies": {
"auto-bind": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.0",
"codecov": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"nyc": "^11.3.0",
"prettier": "^1.6.1",
"remark-cli": "^4.0.0",
"remark-preset-github": "^0.0.7",
"xo": "^0.19.0"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/frankrobert/cilantrojs",
"keywords": ["cilantrojs", "lass"],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write --single-quote --trailing-comma none",
"git add"
],
"*.md": ["remark . -qfo", "git add"]
},
"main": "index.js",
"remarkConfig": {
"plugins": ["preset-github"]
},
"repository": {
"type": "git",
"url": "https://github.com/frankrobert/cilantrojs"
},
"scripts": {
"lint": "xo && remark . -qfo",
"precommit": "lint-staged",
"csvToJson": "babel-node ./examples/csv-to-json/"
},
"xo": {
"extends": "prettier",
"plugins": ["prettier"],
"parserOptions": {
"sourceType": "script"
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
}
],
"max-len": [
"error",
{
"code": 80,
"ignoreUrls": true
}
],
"capitalized-comments": "off",
"camelcase": "off",
"no-warning-comments": "off"
},
"space": true
}
}