forked from fent/randexp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "randexp",
"description": "Create random strings that match a given regular expression.",
"keywords": [
"regex",
"regexp",
"regular expression",
"random",
"test"
],
"version": "0.5.2",
"homepage": "http://fent.github.io/randexp.js/",
"repository": {
"type": "git",
"url": "git://github.com/fent/randexp.js.git"
},
"author": "fent (https://github.com/fent)",
"main": "./lib/randexp.js",
"files": [
"lib"
],
"scripts": {
"version": "gulp build && git add build",
"test": "istanbul cover node_modules/.bin/_mocha -- test/*-test.js"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"drange": "^1.0.0",
"ret": "^0.2.0"
},
"devDependencies": {
"browserify": "^16.1.0",
"gulp": "^3.9.0",
"gulp-header": "^2.0.1",
"gulp-insert": "^0.5.0",
"gulp-uglify": "^3.0.0",
"istanbul": "*",
"mocha": "^5.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2"
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}