-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "@ekino/config",
"version": "1.0.0",
"description": "lightweight configuration module powered by yaml",
"homepage": "https://github.com/ekino/node-config",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-config.git"
},
"maintainers": [
{
"name": "Raphaël Benitte"
},
{
"name": "Nadim El-Boustani"
}
],
"author": "ekino OSS <oss@ekino.com>",
"license": "MIT",
"tags": [
"config",
"yaml",
"lightweight"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"js-yaml": "4.x",
"lodash": "4.x"
},
"devDependencies": {
"@commitlint/cli": "12.x",
"@commitlint/config-conventional": "12.x",
"@types/jest": "26.x",
"@types/js-yaml": "4.x",
"@types/lodash": "4.x",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"@yarnpkg/pnpify": "^2.1.0",
"conventional-changelog-cli": "2.x",
"eslint": "7.x",
"eslint-config-prettier": "8.x",
"eslint-plugin-prettier": "3.x",
"eslint-plugin-you-dont-need-lodash-underscore": "6.x",
"husky": "4.x",
"jest": "26.x",
"nyc": "15.x",
"prettier": "2.x",
"ts-jest": "26.x",
"typescript": "3.9.x"
},
"scripts": {
"tsc": "tsc -d",
"test": "jest",
"test-cover": "jest --coverage",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"version": "echo ${npm_package_version}",
"lint": "eslint ./*.ts ./test/*.js --fix",
"lint-check": "eslint ./*.ts ./test/*.js"
}
}