-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "angular-decorators",
"version": "1.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",
"build": "gulp build && browserify -t babelify ./src/index.js --standalone angular-decorators --ignore reflect-metadata | derequire > ./dist/angular-decorators.js"
},
"keywords": [
"angular",
"angular2",
"angularjs",
"annotations",
"decorators",
"ecmascript6"
],
"author": "Mike Ryan",
"license": "ISC",
"devDependencies": {
"angular": "^1.4.0",
"babel": "^5.0.8",
"babelify": "^6.3.0",
"babel-eslint": "^3.1.23",
"browserify": "^11.2.0",
"chai": "^2.2.0",
"derequire": "^2.0.2",
"eslint": "^0.24.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": {
"metawriter": "^1.0.0"
}
}