Skip to content

Commit 2e353c5

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

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

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)