-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "ext-finder",
"version": "1.0.8",
"description": "Finds an extension of file",
"main": "lib/index.js",
"scripts": {
"build": "babel lib -d build",
"prepublish": "npm run build",
"start": "node build/index.js",
"test": "npm run lint && mocha --require @babel/register test",
"lint": "eslint ./lib ./test"
},
"bin": {
"ext-finder": "bin/ext-finder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolfbarr/ext-finder.git"
},
"keywords": [
"extension",
"file",
"lib",
"cli"
],
"author": "dolfbarr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolfbarr/ext-finder/issues"
},
"homepage": "https://github.com/dolfbarr/ext-finder#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.17.7",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0"
},
"dependencies": {
"colors": "1.4.0",
"mime-types": "^2.1.15",
"semver": "^5.3.0",
"yargs": "^7.0.2"
}
}