-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cmd
31 lines (31 loc) · 887 Bytes
/
setup.cmd
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
cd /d %~dp0
call "%ProgramFiles%\nodejs\nodevars.bat"
REM update npm, which is a requirement for some modules
npm install -g npm
REM grunt command in terminal mode
npm install -g grunt-cli
REM code coverage with istanbul
npm install -g istanbul
REM karma command in terminal mode
npm install -g karma-cli
REM mocha command in terminal mode
npm install -g mocha
REM nodemon to run webapp while debugging browser code
npm install -g forever
npm install -g nodemon
REM less module for Jetbrains plugin
REM npm install -g less
REM build with webpack
npm install -g webpack
REM npm install -g webpack-cli
REM phonegap and weinre
npm install -g phonegap
npm install -g weinre
npm install -g cordova-check-plugins
REM selenium
npm install -g selenium-standalone
selenium-standalone install
REM node security platform
npm install -g nsp
REM install all local modules in package.json
npm install