-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 894 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "inject-env",
"description": "Inject environment variables to string",
"keywords": [
"inject",
"string",
"env",
"environment"
],
"version": "0.7.3",
"engines": {
"node": ">= 0.10.0"
},
"main": "index.js",
"typing": "index.d.ts",
"repository": {
"url": "https://github.com/kimxogus/inject-env.git",
"type": "git"
},
"author": {
"name": "Taehyun Kim",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kimxogus/inject-env/issues"
},
"scripts": {
"test": "node scripts/test",
"prepublish": "npm run test"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"devDependencies": {
"assert": "^1.4.1"
},
"dependencies": {
"lodash.has": "^4.5.2",
"lodash.isplainobject": "^4.0.6",
"object-assign": "^4.1.1"
}
}