-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
82 lines (82 loc) · 2.49 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "angular2-now",
"version": "1.1.6",
"description": "Angular 2 component syntax for Angular 1 apps",
"main": "dist/angular2-now.js",
"scripts": {
"meteor": "gulp meteor",
"test": "karma start karma.config.js --set-env-NODE_ENV=ci",
"test:local": "karma start karma.config.js",
"lint": "eslint src/**/*.js",
"build:dist": "webpack --progress",
"build:prod": "webpack --progress --set-env-NODE_ENV=production",
"build": "npm run build:dist && npm run build:prod",
"bump:patch": "gulp bump:patch && npm run after-bump",
"bump:minor": "gulp bump:minor && npm run after-bump",
"bump:major": "gulp bump:major && npm run after-bump",
"after-bump": "npm run meteor",
"release:patch": "npm run bump:patch && npm run build",
"release:minor": "npm run bump:minor && npm run build",
"release:major": "npm run bump:major && npm run build",
"coverage:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pbastowski/angular2-now.git"
},
"keywords": [
"angular",
"angular1",
"angular2",
"annotations",
"decorators",
"babel"
],
"author": "Paul Bastowski <[email protected]> (https://github.com/pbastowski)",
"maintainers": [
{
"name": "pbastowski",
"email": ""
},
{
"name": "kamilkisiela",
"email": ""
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pbastowski/angular2-now/issues"
},
"homepage": "https://github.com/pbastowski/angular2-now",
"devDependencies": {
"angular": "^1.4.0",
"angular-mocks": "^1.4.0",
"angular-ui-router": "^0.2.15",
"argv-set-env": "^1.0.0",
"babel": "^6.3.26 ",
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0--beta",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"coveralls": "^2.11.4",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-replace": "0.5.4",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.19",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.6",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"webpack": "^1.12.9"
}
}