-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 960 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
{
"name": "fast-inject",
"version": "1.1.2",
"description": "A lightweight dependency injection container for Node.js.",
"main": "index.js",
"keywords": [
"dependency injection",
"inversion of control",
"function composition",
"injector",
"pipeline"
],
"directories": {
"test": "./test"
},
"scripts": {
"bench": "node benchmark/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benthepoet/fast-inject.git"
},
"author": "Ben Hanna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benthepoet/fast-inject/issues"
},
"homepage": "https://github.com/benthepoet/fast-inject#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"bottlejs": "^1.7.0",
"coveralls": "^3.0.0",
"lodash": "^4.17.5",
"mocha": "^5.1.0",
"nyc": "^11.7.1",
"ramda": "^0.25.0",
"underscore": "^1.9.0"
}
}