Pika example config
This file contains 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": "pika-example", | |
"version": "1.0.0", | |
"description": "This is an empty project only used to show the default configuration for Pika pack", | |
"main": "index.js", | |
"author": "Manuel Tuero <manuel.tuero@blackbox-vision.tech>", | |
"license": "MIT", | |
"scripts": { | |
"link": "npm run build && npm link pkg", | |
"clean": "rimraf pkg", | |
"publish": "pika publish", | |
"build": "npm run clean && pika build", | |
"test": "jest --passWithNoTests -- -u", | |
"version": "npm run build" | |
}, | |
"devDependencies": { | |
"@pika/pack": "^0.5.0", | |
"@pika/plugin-build-node": "^0.9.2", | |
"@pika/plugin-build-types": "^0.9.2", | |
"@pika/plugin-build-web": "^0.9.2", | |
"@pika/plugin-standard-pkg": "^0.9.2", | |
"rimraf": "^3.0.2" | |
}, | |
"keywords": [ | |
"pika" | |
], | |
"@pika/pack": { | |
"pipeline": [ | |
["@pika/plugin-standard-pkg"], | |
["@pika/plugin-build-node"], | |
["@pika/plugin-build-web"], | |
["@pika/plugin-build-types"] | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment