forked from commenthol/named-regexp-groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "named-regexp-groups",
"version": "1.0.3",
"description": "Regular expressions with named capture groups and named back-references",
"keywords": [
"backreference",
"capture",
"expression",
"group",
"named",
"regex",
"regexp",
"regular"
],
"homepage": "https://github.com/commenthol/named-regexp-groups/",
"bugs": {
"url": "https://github.com/commenthol/named-regexp-groups/issues"
},
"license": "MIT",
"author": "commenthol <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "git://github.com/commenthol/named-regexp-groups.git"
},
"scripts": {
"all": "npm run clean && npm run lint && npm run build && npm test",
"build": "rollup -c rollup.conf.js",
"clean": "rimraf dist coverage .nyc_output",
"clean:all": "npm run clean && rimraf node_modules",
"coverage": "nyc -r text -r html npm test",
"lint": "eslint '**/*.js'",
"prepublishOnly": "npm run all",
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"core-js": "^2.5.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"rollup": "^0.58.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"safe-regex": "^1.1.0"
},
"maintainers": [
"commenthol <[email protected]>"
]
}