-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 842 Bytes
/
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
{
"name": "config-cats",
"version": "0.1.2",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"description": "Returns a default configuration pojo. Overrides keys with values taken from a json file if an environment variable points to such a file.",
"repository": {
"type": "git",
"url": "https://github.com/OliverUv/config-cats.git"
},
"keywords": [
"configuration",
"config",
"cfg",
"typescript",
"ts"
],
"devDependencies": {
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"dependencies": {
"@types/lodash": "^4.14.38",
"@types/node": "^6.0.46",
"lodash": "^4.16.5"
},
"scripts": {
"build": "tsc",
"lint": "tslint --type-check --project tsconfig.json",
"example": "node build/example.js"
},
"author": "Oliver Uvman",
"license": "MIT"
}