-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "oniyi-object-transform",
"version": "2.2.1",
"description": "offers simple transformations for object literals",
"homepage": "https://github.com/benkroeger/oniyi-object-transform#readme",
"author": "Benjamin Kroeger <[email protected]>",
"files": [
"lib/"
],
"main": "lib/index.js",
"keywords": [
"oniyi",
"object-transform",
"transformation",
"transform"
],
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^7.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benkroeger/oniyi-object-transform.git"
},
"scripts": {
"docs": "jsdoc2md lib/index.js > API.md",
"format": "prettier --write \"**/*.{js,json}\"",
"prelint": "npm run format",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"test:unit": "jest"
},
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.3.1",
"lodash": "^4.17.21"
},
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/benkroeger/oniyi-object-transform/issues"
},
"directories": {
"test": "test"
}
}