This repository has been archived by the owner on Sep 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "kryptopus-cryptocompare",
"description": "Cryptocompare plugin for Kryptopus",
"version": "0.0.1",
"author": "neolao <[email protected]>",
"repository": "https://github.com/kryptopus/cryptocompare.git",
"license": "MIT",
"main": "lib/Bundle.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">= 9"
},
"peerDependencies": {
"kryptopus": "^0.1"
},
"dependencies": {
"decko": "^1.2.0",
"kryptopus": "^0.1.2",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.7",
"babel-preset-solfege": "^1.1.2",
"eslint": "^3.19",
"eslint-plugin-solfege": "^1.0",
"flow-bin": "^0.71.0",
"solfegejs-application": "^3.0.1",
"watch": "^1.0.2"
},
"scripts": {
"flow-stop": "flow stop",
"flow-start": "flow start",
"flow-restart": "flow stop && flow start",
"lint": "eslint --ext .js src",
"prepare": "npm run build",
"prebuild": "npm run lint && flow",
"build": "babel --out-dir lib src --copy-files",
"postbuild": "echo \"\\033[42;30m READY \\033[0m\"",
"watch": "watch 'echo \"\\033[41;37m START BUILDING \\033[0m\"; npm run build --silent' ./src"
},
"babel": {
"presets": [
"solfege"
],
"comments": false
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:solfege/recommended"
]
}
}