-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "type-binder",
"version": "0.4.0",
"description": "A JavaScript type-binder.",
"keywords": [
"type-binding",
"metadata",
"mapper"
],
"author": "Giovanni Lovato <heruan@aldu.net>",
"license": "CC0-1.0",
"homepage": "https://github.com/heruan/type-binder",
"bugs": {
"url": "https://github.com/heruan/type-binder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/heruan/type-binder.git"
},
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"scripts": {
"test": "gulp test"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-jasmine": "^2.4.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.1.6",
"jasmine": "^2.5.3",
"jasmine-reporters": "^2.2.1",
"merge2": "^1.0.3",
"run-sequence": "^1.2.2",
"typescript": "^2.2.2",
"vinyl-paths": "^2.1.0"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
}
}