-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "wildcard-named",
"version": "1.1.1",
"keywords": [
"wildcard",
"regex",
"regex-util",
"pattern-matching",
"pattern",
"match",
"string-matching"
],
"description": "A small and easy-to-use utility module for matching strings using named and/or unnamed wildcards for JavaScript.",
"author": "Łaniewski Bartosz <[email protected]> (https://laniewski.me/)",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Bartozzz/wildcard-named.git"
},
"bugs": {
"url": "https://github.com/Bartozzz/wildcard-named/issues"
},
"dependencies": {
"lodash.escaperegexp": "^4.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.1",
"core-js": "^3.11.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"flow-bin": "^0.152.0",
"mocha": "^9.0.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2"
},
"scripts": {
"pretest": "npm run prepare",
"test": "npm run test:flow && npm run test:lint && npm run test:unit",
"test:flow": "npx flow",
"test:unit": "npx mocha --require @babel/register",
"test:lint": "npx eslint src",
"clean": "npx rimraf dist",
"prebuild": "npm run clean",
"build": "npx babel src -d dist",
"watch": "npx babel src -d dist -w",
"prepare": "npm run build"
}
}