-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 909 Bytes
/
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
{
"name": "javascript-simple-example",
"version": "0.0.1",
"description": "How to use Vesper Framework with JavaScript - simple example",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vesper-framework/javascript-simple-example.git"
},
"bugs": {
"url": "https://github.com/vesper-framework/javascript-simple-example/issues"
},
"tags": [
"vesper",
"vesper-javascript-example"
],
"dependencies": {
"vesper": "^0.1.0",
"sqlite3": "^4.0.0"
},
"scripts": {
"compile": "npx babel src --out-dir dist --copy-files --source-maps --presets=babel-preset-env",
"start": "npm run compile && node ./dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
}
}