-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "wildcard-utils",
"version": "2.2.3",
"description":
"A small, flow-covered, zero-dependency package to work with wildcard (*) values by matching, searching, and filtering values that match a given wildcard pattern. (Works in Browser)",
"author": "Braden R. Napier",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"flow": "flow",
"build":
"cross-env NODE_ENV=production rimraf lib extras to-pattern && npm-run-all -p build:**",
"build:src:babel": "babel src/lib --out-dir lib",
"build:extras:babel": "babel src/to-pattern --out-dir to-pattern",
"build:src:flow": "flow-copy-source src/lib lib",
"build:extras:flow": "flow-copy-source src/to-pattern to-pattern",
"prepublish": "npm-run-all build"
},
"files": [
"lib",
"flowlibs",
"to-pattern",
".flowconfig",
".eslintrc",
".babelrc"
],
"keywords": ["wildcard", "glob", "match", "regexp", "filter", "search"],
"repository": {
"type": "git",
"url": "https://github.com/Dash-OS/wildcard-utils.git"
},
"bugs": {
"url": "https://github.com/Dash-OS/wildcard-utils/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.2.0",
"cross-env": "^5.1.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.59.0",
"flow-copy-source": "^1.2.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"wildcard-utils": "^2.2.1"
}
}