-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "machinepack-urls",
"version": "6.0.2-0",
"description": "Machines for working with URL strings.",
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha -R spec && node ./node_modules/test-machinepack-mocha/bin/testmachinepack-mocha.js",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'"
},
"keywords": [
"url-strings",
"urls",
"machines",
"machinepack"
],
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"machine": "^15.0.0-2"
},
"repository": {
"type": "git",
"url": "git@github.com:mikermcneil/machinepack-urls.git"
},
"machinepack": {
"friendlyName": "URLs",
"variableName": "Urls",
"machineDir": "machines/",
"machines": [
"is-url",
"parse",
"format",
"resolve"
],
"testsUrl": "https://travis-ci.org/mikermcneil/machinepack-urls"
},
"devDependencies": {
"eslint": "3.19.0",
"mocha": "3.0.2",
"test-machinepack-mocha": "^3.0.0"
}
}