-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@geek/config",
"version": "1.0.5",
"description": "Geek Configuration Manager for Node.js - The complete solution for managing config settings for your Node.js application",
"keywords": [
"brenton-house",
"config",
"json",
"jsonc"
],
"homepage": "https://github.com/brentonhouse/geek-config#readme",
"bugs": {
"url": "https://github.com/brentonhouse/geek-config/issues"
},
"repository": {
"type": "git",
"url": "github:brentonhouse/geek-config"
},
"license": "MIT",
"author": {
"name": "Brenton House",
"url": "https://brenton.house"
},
"main": "index.js",
"bin": {
"config": "./bin/cli.js"
},
"scripts": {
"list-files": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly2": "git pull && bump",
"prep": "npm install --ignore-scripts",
"test": "npm run prep",
"test2": "node ./bin/cli.js ./tests/test1-json test1 'ios, dev' '{ \"property1\": \"overrides\", \"property2\": \"overrides\"}' '{ \"property8\": \"defaults\", \"property9\": \"defaults\"}'"
},
"dependencies": {
"fs-extra": "^11.1.1",
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@geek/eslint-config": "1.0.3",
"eslint": "^8.43.0"
},
"engines": {
"node": ">=12.16.3"
},
"maintainers": [
{
"name": "Brenton House",
"email": "brenton.house@gmail.com",
"url": "https://brenton.house"
}
],
"titanium": {
"ignore": true
}
}