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
58 lines (58 loc) · 1.69 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
57
58
{
"name": "kryptopus-candlestick-storage",
"description": "Candlestick storage bundle",
"version": "1.0.0",
"author": "neolao <[email protected]>",
"repository": "https://github.com/kryptopus/candlestick-storage.git",
"license": "MIT",
"files": [
"src",
"lib"
],
"main": "lib/Bundle.js",
"engines": {
"node": ">= 9"
},
"dependencies": {
"kryptopus-candlestick": "^1.0.0",
"decko": "^1.2.0",
"solfegejs-cli": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.7",
"babel-preset-solfege": "^1.1.2",
"eslint": "^3.19",
"eslint-plugin-solfege": "^1.0",
"flow-bin": "^0.60.1",
"solfegejs-application": "^3.0.1",
"solfegejs-dependency-injection": "^2.2.5",
"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 lint && npm run build",
"prebuild": "npm run lint && npm run flow-restart && flow",
"build": "babel --out-dir lib src --copy-files",
"watch": "watch 'echo \"----------\"; npm run build --silent' ./src",
"example-build": "babel --out-dir example/lib example/src --copy-files",
"example-console": "node example/lib/console.js"
},
"babel": {
"presets": [
"solfege"
],
"comments": false,
"plugins": [
"transform-decorators-legacy"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:solfege/recommended"
]
}
}