-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 966 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
{
"name": "deppie",
"version": "0.1.7",
"description": "The simple, small, elegant Dependency Injection framework for javascript.",
"main": "index.js",
"scripts": {
"run": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint .",
"test": "eslint . && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gaafar/deppie.git"
},
"author": "Mostafa Gaafar",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gaafar/deppie/issues"
},
"homepage": "https://github.com/Gaafar/deppie#readme",
"dependencies": {
"babylon": "^6.8.1",
"install": "^0.8.1",
"lodash": "^4.13.1",
"madge": "^0.5.4"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.5.3",
"nodemon": "^1.9.2"
}
}