-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.35 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
59
60
61
62
{
"name": "@strikeentco/get",
"author": "Alexey Bystrov <strikeentco@gmail.com>",
"version": "1.0.1",
"description": "Get a property from a nested object using a dot path or custom separator",
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"obj",
"object",
"prop",
"property",
"dot",
"path",
"get",
"access",
"notation",
"dotty",
"key",
"nested",
"paths",
"properties",
"props",
"segment",
"value",
"values",
"custom",
"separator",
"small",
"fast"
],
"main": "./main.js",
"files": [
"main.js"
],
"scripts": {
"test": "mocha test",
"lint": "eslint main.js",
"check": "npm run lint && npm run test",
"cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html",
"test-on-travis": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strikeentco/get.git"
},
"bugs": {
"url": "https://github.com/strikeentco/get/issues"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"should": "^13.2.1"
},
"license": "MIT"
}