-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 870 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 870 Bytes
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
{
"name": "params-check",
"version": "0.0.5",
"description": "reusable code to validate function params.",
"main": "index.js",
"scripts": {
"build": "babel --presets env src -d ./ --ignore src/index.test.js",
"dev": "babel --presets env src -d ./ --watch --ignore src/index.test.js",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niradler/params-check"
},
"keywords": [
"function",
"params",
"param",
"validation"
],
"author": "Nir Adler",
"license": "MIT",
"bugs": {
"url": "https://github.com/niradler/params-check/issues"
},
"homepage": "http://niradler.com",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"jest": "^20.0.3"
}
}