-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 854 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·39 lines (39 loc) · 854 Bytes
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
{
"name": "javascript-code-test",
"version": "1.0.17",
"date": "2018-06-14T13:15:31.964Z",
"description": "Cardano Javascript Code Test",
"main": "index.js",
"scripts": {
"start": "nodemon -r babel-register --nolazy ./src/index.js",
"test": "jest"
},
"author": "Cardano",
"license": "MIT",
"homepage": "https://cardano.github.io",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"express": "^4.16.3",
"http": "^0.0.0",
"nodemon": "^1.17.5"
}
}