-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
59
60
61
{
"name": "swatchjs-koa-middleware",
"version": "0.0.6",
"description": "Middleware for swatchjs KOA packages",
"main": "dist/index.js",
"scripts": {
"test": "nyc mocha --opts test/unit/mocha.opts 'test/**/*.test.js'",
"test:debug": "mocha --debug-brk",
"lint": "./node_modules/.bin/eslint --ext .js index.js lib test",
"build": "babel . -d dist --ignore coverage,dist,node_modules",
"clean": "rm -rf dist/",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"codecov": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/builtforme/swatchjs-koa-middleware.git"
},
"keywords": [
"swatchjs",
"koa",
"methods",
"api",
"framework"
],
"author": "Built For Me",
"license": "MIT",
"bugs": {
"url": "https://github.com/builtforme/swatchjs-koa-middleware/issues"
},
"homepage": "https://github.com/builtforme/swatchjs-koa-middleware#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es3": "^1.0.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.4",
"coveralls": "^3.0.2",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"nyc": "^13.0.1",
"supertest": "^3.1.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bunyan": "^1.8.12"
},
"files": [
"dist"
]
}