-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "angular-decorators",
"version": "0.2.0",
"description": "A collection of utilities and annotations that make it easier to write Angular 2 style code in AngularJS 1.x",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MikeRyan52/angular-decorators"
},
"scripts": {
"test": "gulp test"
},
"keywords": [
"angular",
"angular2",
"angularjs",
"annotations",
"ecmascript6"
],
"author": "Mike Ryan",
"license": "ISC",
"devDependencies": {
"angular": "^1.3.15",
"babel": "^5.0.8",
"chai": "^2.2.0",
"gulp": "^3.8.11",
"gulp-babel": "^5.0.0",
"gulp-mocha": "^2.0.1",
"mocha": "^2.2.1",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"clone": "^1.0.2",
"extend": "^2.0.0",
"foreach": "^2.0.5",
"is-js": "^0.1.1"
},
"jspm": {
"directories": {},
"dependencies": {
"clone": "npm:clone@^1.0.2",
"extend": "npm:extend@^2.0.1",
"foreach": "npm:foreach@^2.0.5",
"is-js": "npm:is-js@^0.1.1"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
}
}