-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "syringe.ts",
"version": "1.0.2",
"description": "💉 Type-safe, async library for TypeScript dependency injection",
"keywords": [
"typescript",
"di",
"dependency injection",
"dependency",
"injection",
"ioc",
"type-safe",
"typesafe",
"injector"
],
"main": "dist/syringe.js",
"scripts": {
"preversion": "gulp test && gulp test.tsc && gulp package && git add -A dist",
"test": "gulp test.sauce && gulp test.tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewjh/Syringe.git"
},
"author": "Matthew Hill",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewjh/Syringe/issues"
},
"homepage": "https://github.com/matthewjh/Syringe#readme",
"devDependencies": {
"babel": "^5.8.23",
"browserify": "^11.0.1",
"colors": "^1.1.2",
"deep-equal": "^1.0.0",
"dts-bundle": "^0.3.0",
"es6-promise": "^2.3.0",
"glob": "^5.0.14",
"gulp": "^3.9.0",
"gulp-concat-util": "^0.5.2",
"gulp-copy": "0.0.2",
"gulp-karma": "0.0.4",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^2.9.0",
"gulp-uglify": "^1.2.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.3",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-sauce-launcher": "^0.2.14",
"merge2": "^0.3.6",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.3",
"tsd": "^0.6.3",
"typescript": "^1.6.0-beta",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"typescript": {
"definition": "dist/syringe.d.ts"
}
}