-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "aurelia-property-injection",
"version": "0.5.0",
"description": "An extension to Aurelia's DI container which supports injection into properties.",
"keywords": [
"aurelia",
"plugin",
"di",
"dependency injection"
],
"author": "Giovanni Lovato <[email protected]>",
"contributors": [
"Matjaž Lipuš <[email protected]>"
],
"license": "CC0-1.0",
"homepage": "https://github.com/devaur/aurelia-property-injection",
"bugs": {
"url": "https://github.com/devaur/aurelia-property-injection/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/devaur/aurelia-property-injection.git"
},
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"scripts": {
"coverage": "gulp test && gulp remap-istanbul",
"test": "gulp test"
},
"files": [
"dist/main/*"
],
"dependencies": {
"aurelia-dependency-injection": "^1.2.1",
"aurelia-metadata": "^1.0.2"
},
"devDependencies": {
"@types/jasmine": "^2.5.38",
"aurelia-polyfills": "^1.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "^2.4.2",
"gulp-sourcemaps": "^1.9.1",
"gulp-typescript": "^3.1.3",
"jasmine": "^2.5.2",
"jasmine-reporters": "^2.2.0",
"merge2": "^1.0.2",
"remap-istanbul": "^0.8.0",
"run-sequence": "^1.2.2",
"typescript": "^2.1.4",
"vinyl-paths": "^2.1.0"
}
}