-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "angular-es6-di",
"description": "Better dependency injection for Angular 1.x, supports services, controllers, directives, and values.",
"version": "1.0.5",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tengyifei/angular-es6-di.git"
},
"keywords": [
"angular",
"es6",
"dependency",
"injection"
],
"author": "Yifei Teng <[email protected]> (https://thinkingandcomputing.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tengyifei/angular-es6-di/issues"
},
"homepage": "https://github.com/tengyifei/angular-es6-di#readme",
"jspm": {
"registry": "jspm",
"main": "index.js",
"format": "es6",
"directories": {
"lib": "lib"
},
"dependencies": {
"angular": "github:angular/bower-angular@^1.4.2"
},
"devDependencies": {
"babel": "npm:babel-core@^5.6.4",
"babel-runtime": "npm:babel-runtime@^5.6.4",
"core-js": "npm:core-js@^0.9.17"
}
}
}