-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "domfs-findit",
"version": "2.0.1",
"description": "Walk a directory tree in DOM File System",
"main": "legacy/findit.js",
"dependencies": {
"emitify": "^3.1.0",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"redrun": "^7.0.3",
"webpack": "^4.1.0"
},
"scripts": {
"lint": "eslint lib",
"build": "redrun build:*",
"build:client": "webpack --progress --mode production",
"watch:client": "redrun build:client -- --watch",
"wisdom": "npm run build",
"build:legacy": "babel -d legacy lib",
"postbuild:legacy": "echo \"module.exports = require('./findit');\" > legacy/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/domfs-findit.git"
},
"keywords": [
"findit",
"DOM",
"File System"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/domfs-findit/issues"
},
"homepage": "https://github.com/coderaiser/domfs-findit"
}