-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "p2peg.php",
"description": "Peer to Peer Entropy Generator (or Random numbers generator with p2p seeding)",
"version": "0.6.6",
"author": {
"name": "Dumitru Uzun",
"email": "contact@duzun.me",
"url": "http://DUzun.Me/"
},
"homepage": "https://github.com/duzun/P2PEG",
"keywords": [
"P2P",
"random",
"entropy",
"cryptography",
"javascript",
"PHP",
"RNG",
"PRNG",
"seed"
],
"files": [
"P2PEG.php",
"README.md",
"composer.json",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/duzun/P2PEG.git"
},
"license": [
{
"type": "MIT",
"url": "http://github.com/duzun/P2PEG/raw/master/LICENSE"
}
],
"verup": {
"files": [
"composer.json",
"P2PEG.php",
"README.md"
],
"regs": [
"((?:\\$|(?:\\s*\\*?\\s*@)|(?:^\\s*(?:var|,)?\\s+))ver(?:sion)?[\\s\\:='\"]+)([0-9]+(?:\\.[0-9]+){2,2})",
"^(\\s*const\\s+VERSION[\\s='\"]+)([0-9]+(?:\\.[0-9]+){2,2})",
"^(\\s?\\*.*v)([0-9]+(?:\\.[0-9]+){2,2})"
]
},
"devDependencies": {
"verup": "^1.7.1",
"watch": "^1.0.2"
},
"scripts": {
"verup": "node ./node_modules/verup",
"version": "node ./node_modules/verup 0",
"apigen": "php vendor/bin/apigen generate -d ./docs --template-theme bootstrap -s ./P2PEG.php",
"test": "php vendor/bin/phpunit ./tests/",
"test-dev": "node ./tools/test_watcher.js"
}
}