forked from aurelia/dependency-injection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "aurelia-dependency-injection",
"version": "0.8.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
"di",
"dependency injection",
"ioc"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/dependency-injection/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/index.js",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/dependency-injection"
},
"jspm": {
"main": "index",
"format": "register",
"directories": {
"lib": "dist/system"
},
"dependencies": {
"aurelia-logging": "github:aurelia/logging@^0.5.0",
"aurelia-metadata": "github:aurelia/metadata@^0.6.0",
"core-js": "npm:core-js@^0.9.5"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.5"
}
},
"devDependencies": {
"aurelia-tools": "^0.1.6",
"babel-dts-generator": "^0.2.5",
"conventional-changelog": "0.0.11",
"del": "^1.1.0",
"gulp": "^3.8.10",
"gulp-babel": "^5.1.0",
"gulp-bump": "^0.1.11",
"gulp-concat": "^2.6.0",
"gulp-insert": "^0.4.0",
"gulp-jshint": "^1.9.0",
"gulp-rename": "^1.2.2",
"gulp-yuidoc": "^0.1.2",
"jasmine-core": "^2.1.3",
"jshint-stylish": "^1.0.0",
"karma": "^0.12.28",
"karma-babel-preprocessor": "^5.2.1",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.3.1",
"karma-jasmine": "^0.3.5",
"karma-jspm": "^1.1.5",
"object.assign": "^1.0.3",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.2",
"through2": "^2.0.0",
"vinyl-paths": "^1.0.0",
"yargs": "^2.1.1"
},
"aurelia": {
"usedBy": [
"aurelia-binding",
"aurelia-framework",
"aurelia-router",
"aurelia-templating",
"aurelia-templating-resources",
"aurelia-templating-router"
],
"documentation": {
"links": [
{
"rel": "license",
"mediaType": "text/plain",
"title": "The MIT License (MIT)",
"href": "LICENSE"
},
{
"rel": "describedby",
"mediaType": "aurelia-doc+json",
"title": "API",
"href": "doc/api.json"
},
{
"rel": "version-history",
"mediaType": "text/markdown",
"title": "Change Log",
"href": "doc/CHANGELOG.md"
}
]
}
}
}