-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 956 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
{
"name": "objleaves",
"version": "1.0.0",
"description": "A util method that returns all object leaves",
"main": "./dist/index.js",
"scripts": {
"build": "parcel build ./src/index.js",
"lint": "node ./node_modules/eslint/bin/eslint . --ext .js --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/lucataglia/objectLeaves"
},
"bugs": {
"url": "https://github.com/lucataglia/objectLeaves/issues"
},
"keywords": [
"leaf",
"leaves",
"object",
"object-leaves",
"objectleaves"
],
"author": "Luca Tagliabue (https://github.com/lucataglia)",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"jest": "^26.6.3",
"parcel": "2.12.0"
},
"dependencies": {}
}