forked from yahoo/cerebro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.35 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
{
"name": "configurity",
"version": "3.3.0",
"description": "A production-grade, battle-tested YAML / env-based configuration system.",
"author": "Scott Sperling <scsper@yahoo.com>",
"contributors": [
"Theo Gravity <theo@suteki.nu> (https://github.com/theogravity)"
],
"license": "MIT",
"main": "build/index.js",
"scripts": {
"build": "npm run build:clean && npm run compile",
"build:clean": "rm -rf build/*",
"compile": "tsc",
"bench": "npm run build && grunt bench",
"test": "ts-mocha - src/**/_test_/**/*_test.*s",
"test:coverage": "nyc --reporter=text npm test",
"test:ci": "npm run test:coverage",
"toc": "toc-md README.md README.md",
"add-readme": "git add README.md",
"lint-staged": "lint-staged",
"lint": "eslint --ext .ts src",
"prepare-publish": "npm run changelog:prepare && version-bump && npm run changelog:release && npm run changelog:stamp",
"version-bump": "version-bump",
"changelog:help": "changelog-version",
"changelog:verify": "changelog-version verify",
"changelog:prepare": "changelog-version prepare",
"changelog:stamp": "git-commit-stamper parse CHANGELOG.md",
"changelog:release": "changelog-version release"
},
"types": "build/index.d.ts",
"dependencies": {
"buffer-crc32": "^0.2.13",
"js-yaml": "^3.14.0",
"lodash.template": "^4.5.0",
"tv4": "^1.3.0"
},
"devDependencies": {
"@theo.gravity/changelog-version": "2.1.10",
"@theo.gravity/version-bump": "2.0.9",
"@types/chai": "^4.3.11",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.8",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/tv4": "^1.2.33",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^4.4.0",
"eslint": "^8.56.0",
"git-commit-stamper": "^1.0.9",
"grunt": "~1.6.1",
"grunt-benchmark": "~1.0.0",
"grunt-cli": "~1.4.3",
"lint-staged": "10.2.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pre-commit": "1.2.2",
"sinon": "~17.0.1",
"sinon-chai": "^3.7.0",
"toc-md-alt": "^0.4.6",
"ts-mocha": "^10.0.0",
"typescript": "5.3.3"
},
"keywords": [
"conf",
"config",
"configurator",
"configuration",
"env",
"environment",
"dimension",
".env",
"settings",
"options",
"prefs",
"preferences",
"yaml",
"flags",
"launchdarkly",
"darkly",
"bucket"
],
"repository": {
"type": "git",
"url": "https://github.com/theogravity/configurity.git"
},
"homepage": "https://github.com/theogravity/configurity#readme",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignorePatterns": [
"node_modules/*",
"public/*",
"artifacts/*",
"test/support/lib/*",
"tmp/*",
"coverage/*",
"test/fixtures/combined/huge.js"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
2,
{
"args": "none"
}
]
}
},
"lint-staged": {
"src/**/*.ts": [
"git add"
]
},
"pre-commit": [
"toc",
"lint-staged",
"test:ci",
"build"
]
}