-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "my-cryptos-cli",
"version": "0.0.4",
"description": "My Cryptos CLI",
"main": "dist/bundle.js",
"author": "Arth K. Gajjar",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf bower_components node_modules output dist .pulp-cache .purs-repl package-lock.json yarn.lock .psc-ide-port",
"checkyarn": "echo \"$npm_execpath\" | grep -q \"yarn\\.js$\" || (echo '⚠️ Use yarn not npm! ⚠️ ' && echo && exit 1)",
"preinstall": "$npm_execpath --silent run checkyarn",
"postinstall": "yarn alias:yarn && source ~/.zshrc",
"alias:yarn": "echo 'alias my-cryptos=\"node $(yarn global dir)/node_modules/my-cryptos-cli/dist/bundle.js\"' >> ~/.zshrc",
"setup": "yarn global add purescript pulp bower && bower i && yarn build",
"build": "pulp build -O --to dist/bundle.js",
"watch": "pulp -w --then 'yarn run run' build -O --to dist/bundle.js",
"run": "node dist/bundle.js --coins=BTC,ETH --currs=USD,INR",
"start": "yarn build && yarn run run"
},
"repository": {
"type": "git",
"url": "https://github.com/iarthstar/my-cryptos-cli.git"
},
"keywords": [
"cryptos",
"purescript",
"javascript",
"cli",
"api"
],
"dependencies": {
"axios": "^0.21.1",
"chalk": "^3.0.0"
}
}