-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "box-di-autoloader",
"version": "0.3.1",
"author": "Josh Stuart <[email protected]>",
"description": "An autoloading DI container",
"keywords": [
"di",
"factory",
"dependency injection",
"ioc",
"inversion of control",
"solid"
],
"main": "dist/index.js",
"scripts": {
"babel-node": "babel-node",
"start": "pm2 start ./example/example.js --watch",
"test": "jest --notify",
"build-server": "babel ./index.js --out-dir ./dist && babel ./lib --out-dir ./dist/lib && babel ./example --out-dir ./dist/example",
"build": "yarn clean && yarn build-server",
"clean": "rimraf ./dist",
"prepublish": "yarn build",
"lint": "./node_modules/.bin/eslint ./lib ./example ./test",
"prettier": "./node_modules/.bin/prettier --write \"{lib,example,test}/**/*.{js,jsx,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "https://github.com/crimsonronin/box-di-autoloader.git"
},
"license": "MIT",
"dependencies": {
"box-di": "0.2.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.7.1",
"pm2": "^3.5.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3"
},
"engines": {
"node": ">9"
}
}