-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
{
"name": "html-dir-content",
"version": "0.3.2",
"description": "(recursively) iterate directory entries in the browser (html5 File System API)",
"main": "dist/html-dir-content.js",
"scripts": {
"lint": "eslint ./lib",
"test": "yarn lint --quiet && NODE_ENV=test jest",
"test:cov": "yarn test --coverage",
"build": "NODE_ENV=production node build.js",
"prepublishOnly": "yarn test && yarn build"
},
"keywords": [
"html5",
"filesystem",
"directory",
"entry",
"files",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/yoavniran/html-dir-content.git"
},
"author": "Yoav Niran",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-eslint": "^8.0.1",
"chalk": "^3.0.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"rollup": "^1.30.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.4"
}
}