-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "@mzvonar/getin",
"version": "0.0.11",
"description": "Get value from object by path. Undefined-safe and accepts default value",
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production babel index.js -d dist --ignore 'test/*' --copy-files",
"prepublish": "npm run build",
"test": "mocha",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mzvonar/getIn.git"
},
"files": [
"dist"
],
"keywords": [
"get",
"getIn",
"undefined-safe",
"default",
"value"
],
"author": "Martin Zvonar <riffmaker@gmail.com> (martinzvonar.sk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mzvonar/getIn/issues"
},
"homepage": "https://github.com/mzvonar/getIn#readme",
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.1",
"@babel/preset-env": "7.0.0",
"coveralls": "3.0.2",
"expect": "1.20.2",
"istanbul": "0.4.5",
"mocha": "5.2.0"
}
}