-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 3.9 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "twconf",
"version": "0.0.0-development",
"description": "Module for validation config from environment variables",
"main": "dist/index.js",
"repository": "[email protected]:TeslaCtroitel/twconf.git",
"author": "EnRoute <[email protected]>",
"license": "MIT",
"keywords": [
"config",
"configuration",
"12-app",
"12-factors",
"flexible",
"plugabble"
],
"scripts": {
"test": "mocha --recursive --check-leaks --require babel-register src/**/*.test.js src/*.test.js",
"test:dev": "npm t -- -w",
"cover": "nyc npm t",
"postcover": "nyc report --reporter=html --reporter=lcov",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"prebuild": "rimraf ./dist",
"build": "babel src -d ./dist -s --ignore test.js",
"make-commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "lint-staged && npm run cover"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "^1.0.2-0",
"babel-cli": "^7.0.0-alpha.19",
"babel-eslint": "8.2.0",
"babel-preset-env": "^2.0.0-alpha.19",
"babel-preset-stage-0": "^7.0.0-alpha.19",
"babel-register": "^7.0.0-alpha.19",
"chai": "^4.0.2",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsdoc": "^3.1.2",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^5.0.0",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"semantic-release": "^8.2.3"
},
"engines": {
"node": ">=6.0.0"
},
"eslintConfig": {
"root": true,
"extends": "eslint-config-airbnb-base",
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
},
"env": {
"node": true
},
"rules": {
"strict": "error",
"no-restricted-syntax": "off",
"max-len": [
"error",
{
"code": 100,
"comments": 200,
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreTemplateLiterals": true,
"ignoreStrings": true,
"ignoreRegExpLiterals": true
}
],
"jsdoc/check-param-names": 1,
"jsdoc/check-tag-names": 1,
"jsdoc/check-types": 1,
"jsdoc/newline-after-description": 1,
"jsdoc/require-description-complete-sentence": 1,
"jsdoc/require-example": 0,
"jsdoc/require-hyphen-before-param-description": 1,
"jsdoc/require-param": 1,
"jsdoc/require-param-description": 1,
"jsdoc/require-param-type": "error",
"jsdoc/require-returns-description": 1,
"jsdoc/require-returns-type": 1
},
"plugins": [
"jsdoc"
]
},
"babel": {
"presets": [
"stage-0",
[
"env",
{
"targets": {
"node": "6.10"
},
"useBuiltIns": "usage",
"exclude": [
"transform-regenerator",
"transform-async-to-generator"
]
}
]
]
},
"release": {
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "null",
"style": "null",
"refactor": "patch",
"perf": "patch",
"test": "null",
"build": "patch",
"ci": "null",
"chore": "null"
}
},
"lint-staged": {
"*.js": [
"eslint --fix ",
"git add"
],
".json": [
"eslint --ext json --fix ",
"git add "
]
},
"files": [
"dist/*.*",
"dist/**/*.*"
],
"dependencies": {
"babel-polyfill": "^7.0.0-alpha.19",
"eerror": "^2.0.0"
}
}