source: node_modules/randexp/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "name": "randexp",
3 "description": "Create random strings that match a given regular expression.",
4 "keywords": [
5 "regex",
6 "regexp",
7 "regular expression",
8 "random",
9 "test"
10 ],
11 "version": "0.5.3",
12 "homepage": "http://fent.github.io/randexp.js/",
13 "repository": {
14 "type": "git",
15 "url": "git://github.com/fent/randexp.js.git"
16 },
17 "author": "fent (https://github.com/fent)",
18 "main": "./lib/randexp.js",
19 "files": [
20 "lib",
21 "types/index.d.ts"
22 ],
23 "scripts": {
24 "version": "gulp build && git add build",
25 "test": "istanbul cover node_modules/.bin/_mocha -- test/*-test.js",
26 "dtslint": "dtslint types --onlyTestTsNext"
27 },
28 "directories": {
29 "lib": "./lib"
30 },
31 "dependencies": {
32 "drange": "^1.0.2",
33 "ret": "^0.2.0"
34 },
35 "devDependencies": {
36 "browserify": "^16.1.0",
37 "gulp": "^3.9.0",
38 "gulp-header": "^2.0.1",
39 "gulp-insert": "^0.5.0",
40 "gulp-uglify": "^3.0.0",
41 "istanbul": "*",
42 "mocha": "^5.0.0",
43 "vinyl-buffer": "^1.0.1",
44 "vinyl-source-stream": "^1.1.2"
45 },
46 "engines": {
47 "node": ">=4"
48 },
49 "license": "MIT",
50 "types": "./types"
51}
Note: See TracBrowser for help on using the repository browser.