-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "babel-plugin-angular2-annotations",
"version": "5.1.0",
"description": "An experimental babel transformer plugin for Angular 2 annotations",
"repository": "shuhei/babel-plugin-angular2-annotations",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"test:unit": "node test/unit",
"test:integration": "npm run build && karma start --single-run",
"test": "npm run test:unit && npm run test:integration",
"clean": "rm -rf lib",
"lint": "eslint .",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"es6",
"es2015",
"babel",
"babel-plugin",
"angular",
"angular2",
"ng2",
"annotation",
"decorator"
],
"author": "Shuhei Kagawa <shuhei.kagawa@gmail.com>",
"license": "ISC",
"devDependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/core": "2.4.1",
"@angular/platform-browser": "2.4.1",
"@angular/platform-browser-dynamic": "2.4.1",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers-2": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"babylon": "^6.8.0",
"browserify": "^13.0.0",
"eslint": "^3.12.2",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-browserify": "^5.0.4",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-source-map-support": "^1.1.0",
"phantomjs-prebuilt": "^2.1.7",
"rxjs": "5.0.2",
"tape": "^4.5.1",
"watchify": "^3.7.0",
"zone.js": "^0.7.4"
},
"peerDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4"
},
"dependencies": {
"babel-generator": "^6.8.0"
}
}