forked from bonitasoft/bonita-portal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.13 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
{
"name": "portaljs",
"version": "0.0.0",
"devDependencies": {
"babel-core": "6.7.4",
"babel-preset-bonita": "1.0.1",
"bower": "1.5.2",
"copyfiles": "^0.2.1",
"cross-env": "^5.1.4",
"glob": "4.0.6",
"grunt": "0.4.5",
"grunt-angular-gettext": "2.1.0",
"grunt-autoprefixer": "0.4.2",
"grunt-banner": "0.4.0",
"grunt-bower-install": "1.6.0",
"grunt-cli": "0.1.13",
"grunt-concurrent": "0.5.0",
"grunt-connect-proxy": "0.2.0",
"grunt-connect-rewrite": "0.2.1",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-connect": "0.5.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-cssmin": "0.7.0",
"grunt-contrib-htmlmin": "0.4.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-uglify": "0.4.1",
"grunt-contrib-watch": "0.5.3",
"grunt-este-watch": "0.1.18",
"grunt-google-cdn": "0.2.2",
"grunt-html2js": "0.3.5",
"grunt-injector": "0.5.4",
"grunt-karma": "0.12.1",
"grunt-lineending": "0.2.4",
"grunt-newer": "0.6.1",
"grunt-ng-annotate": "0.10.0",
"grunt-ngdocs": "0.2.9",
"grunt-protractor-runner": "5.0.0",
"grunt-rev": "0.1.0",
"grunt-svgmin": "0.2.1",
"grunt-task-helper": "0.3.7",
"grunt-usemin": "2.0.2",
"grunt-wiredep": "2.0.0",
"jasmine-core": "2.1.3",
"jasmine-reporters": "2.1.1",
"jshint-stylish": "2.1.0",
"karma": "0.13.21",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "0.1.12",
"karma-coverage": "0.2.7",
"karma-firefox-launcher": "0.1.6",
"karma-html2js-preprocessor": "0.1.0",
"karma-ie-launcher": "0.1.5",
"karma-jasmine": "0.3.5",
"karma-junit-reporter": "0.2.2",
"karma-ng-html2js-preprocessor": "0.1.2",
"karma-phantomjs-launcher": "1.0.1",
"karma-safari-launcher": "0.1.1",
"less": "2.7.1",
"load-grunt-tasks": "0.4.0",
"mkdirp": "0.5.0",
"ngdocs": "0.1.0",
"node-xml-lite": "0.0.5",
"npm": "^5.3.0",
"npm-run-all": "1.5.1",
"optimist": "0.6.1",
"protractor": "5.2.0",
"query-string": "4.2.3",
"time-grunt": "0.2.10",
"watch": "^0.17.1",
"webdriver-manager": "12.0.6"
},
"engines": {
"node": ">=4.2.0"
},
"scripts": {
"build:fonts": "copyfiles -f 'main/styles/fonts/*.eot' 'main/styles/fonts/*.ttf' 'main/styles/fonts/*.woff' 'main/styles/fonts/*.svg' target/css/skin/fonts",
"prebuild:less": "mkdirp target/css",
"build:less": "lessc main/styles/main.less > target/css/bonita-skin.css",
"build": "npm-run-all --parallel build:* && grunt",
"test": "grunt test",
"test:watch": "karma start test/karma.conf.js --auto-watch",
"postinstall": "bower install",
"pot": "grunt pot",
"pree2e": "webdriver-manager update --versions.standalone=3.11.0 --versions.chrome=2.38 && npm-run-all --parallel build:*",
"e2e": "node --max-old-space-size=2048 ./node_modules/grunt-cli/bin/grunt default testE2e",
"e2e:headless": "cross-env HEADLESS=true npm-run-all e2e",
"dev:serve": "grunt serve",
"dev:less": "watch --wait=1 'npm-run-all --parallel build:*' main/styles",
"start": "npm-run-all --parallel dev:*"
}
}