-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 894 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 894 Bytes
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
{
"name": "packagebind",
"version": "0.3.5",
"description": "Connect packages to your application with HMR and babel config",
"main": "lib/index.js",
"repository": "https://github.com/interviewstreet/packagebind.git",
"author": "s-yadav <sudhanshuyadav2@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src -d lib"
},
"peerDependencies": {
"babel-plugin-module-resolver": "3.2.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
}
}