forked from ekino/node-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.51 KB
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
{
"name": "@ekino/config",
"version": "0.2.0",
"description": "lightweight configuration module powered by yaml",
"homepage": "https://github.com/ekino/node-config",
"main": "index.js",
"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": ">=6.0.0"
},
"dependencies": {
"js-yaml": "3.x.x",
"lodash": "4.x.x"
},
"devDependencies": {
"ava": "0.19.1",
"coveralls": "2.x.x",
"eslint": "3.x.x",
"git-changelog": "1.x.x",
"nyc": "11.x.x",
"prettier": "1.x.x"
},
"scripts": {
"fmt": "prettier --print-width 100 --tab-width=4 --single-quote --bracket-spacing --no-semi --color --write index.js test/*.js test/**/*.js",
"check-fmt": "prettier --print-width 100 --tab-width=4 --single-quote --bracket-spacing --no-semi --list-different index.js test/*.js test/**/*.js",
"test": "ava",
"test-cover": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"changelog": "git-changelog -t false -n v${npm_package_version}",
"version": "echo ${npm_package_version}",
"lint": "eslint ."
}
}