-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "randexp",
"description": "Create random strings that match a given regular expression.",
"keywords": [
"regex",
"regexp",
"regular expression",
"random",
"test"
],
"version": "0.5.3",
"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",
"types/index.d.ts"
],
"scripts": {
"version": "gulp build && git add build",
"test": "istanbul cover node_modules/.bin/_mocha -- test/*-test.js",
"dtslint": "dtslint types --onlyTestTsNext"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"drange": "^2.0.1",
"ret": "^0.3.2"
},
"devDependencies": {
"browserify": "^16.2.3",
"gulp": "^4.0.0",
"gulp-header": "^2.0.1",
"gulp-insert": "^0.5.0",
"gulp-uglify": "^3.0.0",
"istanbul": "*",
"mocha": "^7.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"types": "./types"
}