This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "gofigure",
"description": "Configuration library for node",
"version": "2.0.1",
"scripts": {
"jest": "jest --runInBand",
"test": "npm run eslint && npm run jest",
"eslint": "eslint lib/. test/.",
"eslint-fix": "eslint lib/. test/. --fix",
"semantic-release": "semantic-release"
},
"keywords": [
"Config",
"Configuration",
"Configurations",
"JSON",
"Properties",
"Property",
"Environment Variables"
],
"homepage": "http://c2fo.github.com/gofigure",
"repository": {
"type": "git",
"url": "https://github.com/C2FO/gofigure.git"
},
"dependencies": {
"glob": "^7.1.7",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-angular": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"coveralls": "3.1.1",
"eslint": "7.30.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "4.2.1",
"husky": "6.0.0",
"jest": "27.5.1",
"prettier": "2.8.8",
"semantic-release": "19.0.3"
},
"author": "Doug Martin (doug.martin@c2fo.com)",
"main": "index.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 12.0.0"
},
"contributors": [
{
"name": "Doug Martin",
"email": "doug.martin@c2fo.com"
},
{
"name": "Bryan Rockwood",
"email": "bryan.rockwood@c2fo.com"
}
]
}