-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "solfegejs-koa",
"description": "Bridge of KoaJS for SolfegeJS",
"version": "0.1.0",
"author": "neolao <contact@neolao.com>",
"repository": "https://github.com/neolao/solfege-bundle-koa.git",
"license": "MIT",
"files": [
"lib",
"src"
],
"main": "lib/Bundle.js",
"engines": {
"node": ">= 9"
},
"dependencies": {
"koa": "^2.5.0"
},
"devDependencies": {
"babel-cli": "^6.7",
"babel-core": "^6.26",
"babel-preset-solfege": "^1.2.1",
"chai": "^3.5",
"co-mocha": "^1.2.0",
"flow-bin": "^0.60.1",
"jsdoc": "^3.4",
"mocha": "^3.0",
"nyc": "^10.3.2",
"solfegejs-application": "^3.0.1",
"solfegejs-cli": "^4.0.2",
"solfegejs-dependency-injection": "^2.1.6",
"watch": "^1.0.2"
},
"scripts": {
"prepare": "npm run build",
"flow-stop": "flow stop",
"flow-start": "flow start",
"flow-restart": "flow stop; flow start",
"prebuild": "flow",
"build": "babel --out-dir lib src --copy-files",
"watch": "watch 'echo \"----------\"; npm run build --silent' ./src",
"example-build": "flow; babel --out-dir example/lib example/src --copy-files",
"example-console": "node example/lib/console.js"
},
"babel": {
"presets": [
"solfege"
],
"comments": false
}
}