-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 873 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 873 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
{
"name": "decent-injection",
"friendlyName": "Decent Injection",
"version": "0.2.1",
"description": "Dependency injection library built for, used, and battle-tested by DecentCMS. It features scope management, constructor injection, property injection, and service locator. It has no runtime dependency.",
"keywords": ["dependency injection", "service locator", "scope", "inversion of control"],
"homepage": "https://github.com/DecentCMS/DecentInjection",
"bugs": "https://github.com/DecentCMS/DecentInjection/issues",
"main": "./lib/scope",
"repository": "https://github.com/DecentCMS/DecentInjection.git",
"scripts": {
"test": "./test/index"
},
"author": {
"name": "Bertrand Le Roy",
"url": "http://bertrandleroy.net"
},
"license": "MIT",
"devDependencies": {
"chai": "*",
"grunt-mocha-test": "*",
"mocha": "*"
}
}