forked from angular-translate/angular-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "angular-translate",
"version": "2.15.1",
"description": "A translation module for AngularJS",
"main": "dist/angular-translate.js",
"repository": {
"type": "git",
"url": "https://github.com/angular-translate/angular-translate"
},
"keywords": [
"angular-translate",
"angular",
"AngularJS",
"translation"
],
"engines": {
"node": "*"
},
"devEngines": {
"node": ">=6.9",
"npm": ">=3"
},
"scripts": {
"prepublish": "bower install",
"check-env": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"shipit": "npm run-script -s check-env && bower install && bower update && grunt prepare-release",
"lint": "grunt lint",
"test": "npm run-script -s check-env && grunt install-test && grunt test",
"test-headless": "npm run-script -s check-env && grunt test-headless",
"test-scopes": "npm run-script -s check-env && grunt install-test && for f in test_scopes/*; do TEST_SCOPE=\"`basename $f`\" grunt test; done",
"clean-test-scopes": "for f in test_scopes/*; do (cd $f; rm -rf bower_components); done",
"compile": "npm run-script -s check-env && grunt compile",
"build": "npm run-script -s check-env && grunt build",
"build-site": "npm run -s build-site-all-languages; npm run -s build-site-plato-report",
"build-site-all-languages": "./build_tools/generate_site.sh",
"build-site-by-language": "./build_tools/generate_site_by_language.sh",
"build-site-plato-report": "rm -rf ./site/plato && plato -d plato -l .jshintrc src/*.js src/**/*.js && mv plato site",
"upload-github-release": "node build_tools/upload-github-release.js",
"start-demo": "node build_tools/server.js"
},
"author": {
"name": "Pascal Precht"
},
"contributors": [
{
"name": "Jan Philipp",
"email": "[email protected]",
"url": "https://github.com/knalli"
},
{
"name": "Max Prichinenko"
},
{
"name": "Thorsten S"
}
],
"license": "MIT",
"devDependencies": {
"adm-zip": "^0.4.7",
"body-parser": "^1.16.0",
"bower": "^1.7.9",
"errorhandler": "^1.5.0",
"express": "^4.14.1",
"express-session": "^1.15.0",
"fbjs-scripts": "^0.7.1",
"grunt": "~1.0.1",
"grunt-bower-install-simple": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-file-append": "0.0.6",
"grunt-karma": "^2.0.0",
"grunt-ng-annotate": "^3.0.0",
"grunt-ngdocs": "~0.2.5",
"grunt-parallel": "^0.5.1",
"grunt-umd": "^2.3.3",
"grunt-version": "^1.0.0",
"inquirer": "^3.0.1",
"jasmine-core": "^2.1.3",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "~1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"load-grunt-tasks": "^3.4.1",
"local-web-server": "^1.2.6",
"method-override": "^2.3.7",
"morgan": "^1.8.0",
"multer": "^1.3.0",
"phantomjs-prebuilt": "^2.1.4",
"plato": "^1.5.0",
"publish-release": "^1.3.3",
"pug": "^2.0.0-beta11",
"serve-favicon": "^2.3.2",
"tar.gz": "^1.0.5"
},
"dependencies": {
"angular": ">=1.2.26 <=1.6"
}
}