Skip to content

Commit dbc9316

Browse files
committed
Remove yarn, add npm
1 parent 8c509bd commit dbc9316

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ git:
1111
script: cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec
1212
--colors --compilers js:babel-core/register server/tests --recursive
1313
after_script:
14-
- yarn report-coverage
14+
- npm report-coverage
1515
before_script:
1616
- npm install -g gulp-cli
1717
deploy:

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@
77
"private": false,
88
"engines": {
99
"node": ">=4.8.0",
10-
"npm": ">=2.15.11",
11-
"yarn": ">=0.20.3"
10+
"npm": ">=2.15.11"
1211
},
1312
"scripts": {
1413
"start": "gulp serve",
15-
"start:debug": "cross-env DEBUG=express-mongoose-es6-rest-api:* yarn start",
14+
"start:debug": "cross-env DEBUG=express-mongoose-es6-rest-api:* npm start",
1615
"build": "gulp",
1716
"lint": "esw *.js server config --color",
18-
"lint:watch": "yarn lint -- --watch",
17+
"lint:watch": "npm lint -- --watch",
1918
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register server/tests --recursive",
20-
"test:watch": "yarn test -- --watch",
19+
"test:watch": "npm test -- --watch",
2120
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register server/tests --recursive",
22-
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
21+
"test:check-coverage": "npm test:coverage && istanbul check-coverage",
2322
"report-coverage": "coveralls < ./coverage/lcov.info"
2423
},
2524
"repository": {

0 commit comments

Comments
 (0)