forked from pillarjs/path-to-regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "path-to-regexp",
"description": "Express style path to RegExp utility",
"version": "3.0.0",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test-spec": "mocha --require ts-node/register -R spec --bail test.ts",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts",
"test": "npm run lint && npm run test-cov"
},
"keywords": [
"express",
"regexp",
"route",
"routing"
],
"component": {
"scripts": {
"path-to-regexp": "index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pillarjs/path-to-regexp.git"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"chai": "^4.1.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
}
}