-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "api-request-validator",
"version": "1.1.2",
"description": "Validate API call parameters",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/cucumber-js",
"build": "rm -rf build && ./node_modules/.bin/babel src --presets es2015,stage-0 --out-dir build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Pitbi/api-request-validator.git"
},
"keywords": [
"api",
"requests",
"validation",
"validator",
"call",
"rest",
"http",
"header",
"payload",
"body"
],
"author": "Pierre Biezemans",
"license": "MIT",
"homepage": "https://github.com/Pitbi/api-request-validator.git#readme",
"dependencies": {
"babel-preset-stage-0": "^6.24.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"cucumber": "^4.2.1",
"pre-git": "^3.17.0",
"source-map-support": "^0.5.3"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"config": {
"pre-git": {
"commit-msg": "",
"pre-commit": [
"yarn build"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}