-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
61
62
{
"name": "object-dot",
"version": "1.7.0",
"description": "Easily use dot notation to `get`, or `set` a property of a nested object.",
"main": "index.js",
"scripts": {
"test": "standard && jest",
"test-watch": "jest --watch",
"test-ci": "standard && jest --collectCoverage && codecov",
"lint": "standard",
"lint:fix": "standard --fix",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=8.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jusx/object-dot.git"
},
"keywords": [
"object",
"property",
"set",
"dotty",
"notation",
"nested",
"dot"
],
"author": {
"name": "Justin Law",
"email": "hello@justinlaw.org"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/jusx/object-dot/issues"
},
"homepage": "https://github.com/jusx/object-dot#readme",
"devDependencies": {
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"codecov": "^3.2.0",
"jest": "^24.1.0",
"semantic-release": "^15.13.3",
"standard": "^12.0.1"
},
"standard": {
"env": [
"jest"
]
},
"release": {
"plugins": [
"@semantic-release/npm",
"@semantic-release/release-notes-generator",
"@semantic-release/git",
"@semantic-release/github"
]
}
}