-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "readyblocks-node",
"version": "1.0.0",
"description": "Internal modular NodeJS API for querying external services and handling incoming requests",
"main": "lib/index.js",
"repository": "git@github.com:readyblocks/readyblocks-node.git",
"author": "dhellstern <dhellstern@outlook.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "nyc mocha lib/**.spec.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-runtime",
"transform-async-to-generator"
]
}
}