-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.37 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.37 KB
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
{
"name": "run.env",
"version": "1.1.0",
"description": "Execute commands with .env file",
"keywords": [
"run",
"cmd",
"cli",
"shell",
"dotenv",
".env",
"env",
".env file",
"--env-file",
"environment",
"environment variables",
"environment variable",
"execute",
"exec",
"spawn",
"spawnSync"
],
"main": "lib/index.js",
"bin": {
"run.env": "./bin/run.env"
},
"preferGlobal": true,
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "airbnb/base"
},
"scripts": {
"lint": "eslint src/**",
"build": "babel --presets es2015 src -d lib",
"prepublish": "rm -fr lib/ && npm run build",
"dev": "./node_modules/.bin/babel-node src/",
"start": "node lib/"
},
"engines": {
"node": ">=6.1.0",
"npm": ">=3.8.6"
},
"homepage": "https://github.com/palanik/run.env",
"repository": {
"type": "git",
"url": "https://github.com/palanik/run.env.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "N. Palani Kumanan",
"license": "MIT",
"dependencies": {
"dotenv": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0"
}
}