Adding CI targets

node4js-jobs runs two targets from package.json:
lint and test. However lint were missing from package.json.

Depends-On: I22686d05670fc6c947611f8044dea498239a4212
Change-Id: I22b9f0c8a9061d3991a8055a7654a5d2b5182027
This commit is contained in:
Tomasz Trębski 2017-04-25 06:52:23 +02:00
parent 9463c20a9c
commit a4085ee225
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@
"start": "gulp dev",
"build": "gulp build",
"package": "gulp package",
"test": "gulp test"
"test": "gulp test",
"lint": "gulp lint"
},
"engines": {
"node": "4.4.7",