Created
January 9, 2019 01:26
-
-
Save kcmr/ef5f9f62761066c2da777fe95c4ab7df to your computer and use it in GitHub Desktop.
CI/CD con Travis en Github (Medium post)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "@myscope/mypackage", | |
"main": "mypackage.js", | |
"version": "0.0.0", | |
"dependencies": { | |
"@polymer/lit-element": "^0.6.5" | |
}, | |
"devDependencies": { | |
"@webcomponents/webcomponentsjs": "^2.2.0", | |
"polymer-cli": "^1.9.4", | |
"wct-browser-legacy": "^1.0.1", | |
"wct-istanbul": "~0.14.3", | |
"web-component-tester": "^6.7.1" | |
}, | |
"scripts": { | |
"build": "polymer build", | |
"test": "wct --module-resolution=node --npm" | |
}, | |
"publishConfig": { | |
"access": "public" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment