Skip to content

Commit

Permalink
DIG-25624 Replacing all reference to yarn -> npm
Browse files Browse the repository at this point in the history
Also removing yarn.lock
  • Loading branch information
eriksalhus committed Jul 25, 2017
1 parent 373d790 commit 1d7427c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5,308 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"version": "1.0.0",
"main": "lib/index.js",
"scripts": {
"start": "yarn server",
"start": "npm run server",
"server": "./node_modules/.bin/webpack-dev-server --progress --color",
"build": "babel -d lib/. --ignore=*.test.js src/.",
"watch": "onchange 'src/**.js' -- yarn build",
"watch": "onchange 'src/**.js' -- npm run build",
"lint": "eslint --ext .js,.jsx src/.",
"test:nsp": "nsp check",
"test:spec": "mocha --require babel-register src/**/*.test.js",
"test": "yarn test:spec && yarn test:nsp",
"test": "npm run test:spec && npm run test:nsp",
"tdd": "mocha --require babel-register src/**/*.test.js -w --watch-extensions jsx",
"example": "babel-node docs/create.js > example.html",
"prepublish": "yarn build",
"prepublish": "npm run build",
"has-published": "npm show . versions -s --json | grep -q \\\"${npm_package_version}\\\""
},
"devDependencies": {
Expand Down

0 comments on commit 1d7427c

Please sign in to comment.