Browse Source

Merge branch 'master' into fix-build-script

master
Feross Aboukhadijeh 7 years ago
committed by GitHub
parent
commit
05e2724d06
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      package.json

25
package.json

@ -36,19 +36,22 @@
"@babel/plugin-transform-async-to-generator": "^7.0.0-beta.39",
"standard": "*"
},
"engines": {
"node": ">=6"
},
"keywords": [
"thanks",
"open source",
"sustainability",
"donate",
"support",
"funding",
"patreon",
"donor",
"thank you",
"earn",
"fund",
"funding",
"open source",
"patreon",
"support",
"sustain",
"earn"
"sustainability",
"thank you",
"thanks"
],
"license": "MIT",
"main": "index.js",
@ -57,8 +60,8 @@
"url": "git://github.com/feross/thanks.git"
},
"scripts": {
"build": "mkdir -p dist && babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js",
"test": "standard && npm run build && ./dist/cmd.js --no-open",
"prepublish": "npm run build"
"build": "mkdir -p dist && babel src/cmd.js > dist/cmd.js && chmod +x dist/cmd.js",
"prepublish": "npm run build",
"test": "standard && npm run build && ./dist/cmd.js --no-open"
}
}

Loading…
Cancel
Save