-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "js-dir-into-json",
"version": "2.7.1",
"description": "Recursively loads content of found JavaScript and JSON files in given directory into a single structured object",
"author": "Martin Rafael Gonzalez <[email protected]>",
"main": "dist/js-dir-into-json.js",
"module": "dist/js-dir-into-json.mjs",
"scripts": {
"build": "rollup -c",
"build:live": "nodemon -w src -w test --exec npm run build",
"lint": "eslint --ext .js --ignore-path .gitignore src/",
"test": "ava --serial --verbose",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devtin/js-dir-into-json.git"
},
"keywords": [
"deep",
"deeply",
"recursive",
"recursively",
"load",
"list",
"javascript",
"json",
"file",
"folder",
"structure"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/devtin/js-dir-into-json/issues"
},
"dependencies": {
"deep-list-dir": "^1.4.4",
"deepmerge": "^4.2.2",
"is-plain-object": "^5.0.0",
"lodash": "^4.17.20"
},
"homepage": "https://github.com/devtin/js-dir-into-json#readme",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@rollup/plugin-commonjs": "^17.1.0",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"esm": "^3.2.25",
"nodemon": "^2.0.7",
"rollup": "^2.38.5",
"standard-version": "^9.1.0"
},
"ava": {
"files": [
"test/**/*.test.js",
"src/**/*.unit.js",
"!test/fixtures"
],
"require": [
"esm"
],
"babel": true,
"snapshotDir": "test/snapshots"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"env": {
"es6": true,
"node": true,
"commonjs": true
},
"globals": {
"BigInt": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"ignorePatterns": [
"*.unit.js"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run lint && npm run build",
"precommit": "npm run --silent build > /dev/null 2>&1 && git add dist/ -f"
}
}
}