-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "dir-files",
"version": "1.0.0-rc.15",
"description": "micro library to get files from a path with middlewares",
"main": "dist/dir-files.js",
"module": "dist/dir-files.esm.js",
"jsnext:main": "dist/dir-files.esm.js",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build && rollup -c rollup.config.test.js",
"test": "mocha",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arijs/dir-files.git"
},
"keywords": [
"dir",
"files",
"ls",
"micro",
"middleware"
],
"author": "Rafael Hengles",
"license": "MIT",
"bugs": {
"url": "https://github.com/arijs/dir-files/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/arijs/dir-files#readme",
"dependencies": {
"minimatch": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^6.1.2",
"buble": "^0.13.2",
"eslint": "^7.16.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"rollup": "^0.34.7",
"rollup-plugin-buble": "^0.13.0",
"rollup-watch": "^2.5.0"
}
}