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

Loading…
Cancel
Save