-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "nested-property",
"description": "Read, write or test a data structure's nested property via a string like 'my.nested.property'. It works through arrays and objects.'",
"version": "4.0.0",
"homepage": "https://github.com/cosmosio/nested-property",
"license": "MIT",
"files": [
"LICENSE",
"CHANGELOG",
"dist/nested-property.js",
"index.d.ts"
],
"author": "Olivier Scherrer <pode.fr@gmail.com>",
"contributors": [
{
"name": "Igor Barbosa",
"url": "https://github.com/igor-barbosa"
}
],
"keywords": [
"nested",
"property",
"object",
"array",
"read",
"write",
"get",
"set"
],
"repository": {
"type": "git",
"url": "git@github.com:cosmosio/nested-property.git"
},
"bugs": {
"url": "https://github.com/cosmosio/nested-property/issues"
},
"scripts": {
"test": "mocha test/",
"debug-test": "mocha debug test/",
"test-build": "ENTRYPOINT=../dist/nested-property.js mocha test/",
"lint": "eslint index.js test/",
"fix-lint": "eslint index.js test/ --fix",
"build": "babel index.js -o dist/nested-property.js"
},
"main": "./dist/nested-property.js",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.11.5",
"chai": "~1.9.1",
"eslint": "^6.8.0",
"mocha": "^8.1.1",
"sinon": "~1.12.2"
}
}