This repository has been archived by the owner on Jul 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "hapi-api-builder",
"version": "1.0.0",
"description": "A build engine for RESTful and GraphQL APIs",
"main": "build/index.js",
"scripts": {
"precommit": "npm run build && npm run lint",
"prepush": "npm run build && npm run lint && npm test",
"prepublish": "npm run build && npm run lint && npm test",
"lint": "eslint src",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"tdd": "ava --watch",
"build": "SCRIPTY_SILENT=true scripty",
"test": "SCRIPTY_SILENT=true scripty"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jdgriffith/hapi-api-builder.git"
},
"keywords": [
"API",
"Hapi",
"Generator"
],
"author": "Justin Griffith",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdgriffith/hapi-api-builder/issues"
},
"homepage": "https://github.com/jdgriffith/hapi-api-builder#readme",
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-closure-elimination": "^1.1.16",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"escope": "^3.6.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-pichak": "^1.1.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"nyc": "^11.0.3",
"scripty": "^1.7.1",
"sinon": "^2.3.7",
"sinon-bluebird": "^3.1.0"
},
"nyc": {
"cache": true
},
"files": [
"build"
],
"ava": {
"source": [
"src/**/*.js",
"!build/**/*"
],
"files": [
"tests/**/*.test.js",
"!build/**/*"
],
"require": [
"babel-register"
]
},
"dependencies": {
"bluebird": "^3.5.0",
"db-migrate": "^0.10.0-beta.21",
"fs-extra": "^4.0.0",
"hapi-sequelize-crud-extended": "^3.0.2",
"hapi-sequelizejs": "^0.0.5",
"hapi-swaggered": "^2.9.0",
"hapi-swaggered-ui": "^2.6.0",
"lodash": "^4.17.4",
"sequelize": "^4.3.2",
"sequelize-auto": "^0.4.28"
}
}