-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 923 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
48
49
50
{
"name": "reorient",
"version": "5.0.0",
"description": "Reorganise objects into other objects",
"main": "index.js",
"scripts": {
"test": "mocha **.test.js",
"lint": "standard ."
},
"keywords": [
"reorganise",
"reorient",
"organise",
"transform",
"remap",
"map",
"reorder",
"marshal",
"translate"
],
"author": "Antony Jones",
"license": "MIT",
"dependencies": {
"@hapi/hoek": "^9.2.0"
},
"repository": {
"type": "git",
"url": "[email protected]:desirable-objects/reorient.git"
},
"bugs": {
"url": "https://github.com/desirable-objects/reorient/issues"
},
"engines": {
"node": ">=7.0.0"
},
"devDependencies": {
"@hapi/code": "^8.0.3",
"mocha": "^9.0.0",
"sinon": "^11.1.1",
"standard": "^16.0.3"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"context"
]
}
}