-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "seneca-merge-payload",
"version": "1.0.1",
"description": "SenecaJS Merge Payload",
"main": "index.js",
"scripts": {
"start": "echo \"no entry point\"",
"test": "npm run lab",
"lab": "lab -v test/*.test.js -T node_modules/lab-babel --leaks --timeout 555555",
"build": "babel ./src/index.js -o ./dist/index.js --presets es2015"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bsociety/seneca-merge-payload.git"
},
"keywords": [
"merge",
"payload",
"microservice",
"package"
],
"author": "FelipeBarrosCruz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bsociety/seneca-merge-payload.git/issues"
},
"homepage": "https://github.com/Bsociety/seneca-merge-payload.git#readme",
"dependencies": {
"joi": "^8.4.1",
"lodash": "^4.13.1",
"seneca": "^3.4.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"code": "^5.2.0",
"eslint": "^2.12.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"husky": "^0.15.0-rc.8",
"lab": "^15.3.0",
"lab-babel": "^1.1.1"
}
}