-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "smurl",
"version": "2.0.0",
"description": "smart partial url matching for nodejs and the browser",
"main": "index.js",
"scripts": {
"lint": "standard",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha test/test*",
"test": "mocha"
},
"author": "Alan Clarke <alan@qubit.com> (qubit.com)",
"license": "UNLICENSED",
"devDependencies": {
"expect.js": "^0.3.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"standard": "^14.0.1",
"webpack": "^1.12.9"
},
"dependencies": {
"urlite": "^3.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qubitdigital/smurl.git"
},
"keywords": [
"url",
"matching"
],
"bugs": {
"url": "https://github.com/qubitdigital/smurl/issues"
},
"homepage": "https://github.com/qubitdigital/smurl#readme"
}