-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
47 lines (47 loc) · 1002 Bytes
/
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
{
"name": "dot-prop-immutable",
"version": "2.1.1",
"description": "Immutable version of dot-prop with some extensions",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"postversion": "git push && git push --tags",
"preversion": "npm test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/debitoor/dot-prop-immutable"
},
"author": "Debitoor",
"license": "MIT",
"bugs": {
"url": "https://github.com/debitoor/dot-prop-immutable/issues"
},
"keywords": [
"immutable",
"dot-prop",
"react",
"redux",
"obj",
"object",
"prop",
"property",
"dot",
"path",
"get",
"access",
"notation"
],
"homepage": "https://github.com/debitoor/dot-prop-immutable",
"devDependencies": {
"@debitoor/eslint-config-debitoor": "3.0.2",
"chai": "4.2.0",
"eslint": "6.8.0",
"mocha": "6.2.0",
"mocha-eslint": "5.0.0"
},
"engines": {
"node": ">=6.0.0"
}
}