-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.47 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
{
"name": "loosely",
"version": "0.3.1",
"description": "Text loosely based on input",
"scripts": {
"test": "nyc --reporter=text --reporter=html ava",
"lint": "eslint ./*.js src",
"delint": "eslint --fix ./*.js src",
"build": "pika-pack build",
"time": "node -r esm benchmark"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deckar01/loosely.git"
},
"keywords": [
"input",
"mask",
"restrict",
"filter",
"text",
"regex",
"generate",
"sample"
],
"author": "Jared Deckard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deckar01/loosely/issues"
},
"homepage": "https://github.com/deckar01/loosely#readme",
"devDependencies": {
"@pika/pack": "^0.3.7",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-bundle-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"esm": "^3.2.22",
"micro-benchmark": "^1.3.22",
"nyc": "^14.0.0"
},
"ava": {
"require": [
"esm"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-bundle-web"
]
]
}
}