-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.59 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
65
66
67
68
69
70
71
{
"name": "machinepack-strings",
"version": "6.1.1",
"description": "Work with strings.",
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"custom-tests": "node ./node_modules/test-machinepack-mocha/bin/testmachinepack-mocha.js && node node_modules/mocha/bin/mocha"
},
"keywords": [
"coupon-code",
"random",
"token",
"uuid",
"strings",
"machines",
"machinepack"
],
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"browserify-transform-machinepack": "^1.0.3",
"machine": "^15.0.0-2",
"uuid": "2.0.2"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2",
"test-machinepack-mocha": "^3.0.0"
},
"browserify": {
"transform": [
"browserify-transform-machinepack"
]
},
"machinepack": {
"friendlyName": "Strings",
"machineDir": "lib/",
"machines": [
"match",
"match-global",
"capitalize",
"length",
"trunc",
"trim",
"replace",
"split",
"deburr",
"slice",
"at",
"join",
"template",
"ensure-uniq",
"to-stream",
"from-stream",
"random",
"to-lower-case",
"to-upper-case",
"to-kebab-case",
"to-camel-case",
"is-valid-regex",
"uuid"
],
"testsUrl": "https://travis-ci.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/treelinehq/machinepack-strings.git"
}
}