-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.87 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
{
"name": "hapi-decorators",
"version": "2.0.0",
"description": "Decorators for HapiJS routes using ES6 classes",
"main": "index.js",
"scripts": {
"build": "babel index.js test/*.js test/**/*.js -d dist --source-maps",
"lint": "standard | snazzy index.js test/*.js test/**/*.js",
"pretest": "npm run lint",
"test": "npm run build && node dist/test/index.js | tspec",
"posttest": "npm run lint",
"coverage": "babel-node node_modules/.bin/isparta cover test/*.js | tspec",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"deploy:docs": "docpress build && git-update-ghpages knownasilya/hapi-decorators _docpress",
"prepublish": "in-publish && npm run deploy:docs || not-in-publish",
"release": "standard-version"
},
"author": "Ilya Radchenko <[email protected]> (https://github.com/knownasilya)",
"repository": {
"type": "git",
"url": "git+https://github.com/knownasilya/hapi-decorators.git"
},
"keywords": [
"decorators",
"hapijs",
"hapi",
"controller"
],
"license": "ISC",
"dependencies": {
"debug": "^3.1.0",
"extend": "^3.0.2",
"in-publish": "^2.0.0"
},
"devDependencies": {
"@types/hapi__hapi": "^18.2.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"coveralls": "^3.0.7",
"docpress": "^0.8.0",
"git-update-ghpages": "^1.3.0",
"isparta": "^4.0.0",
"rimraf": "^2.4.3",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"standard-version": "^8.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.2.0"
},
"standard": {
"parser": "babel-eslint"
}
}