-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 919 Bytes
/
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
{
"name": "pure-random",
"version": "0.1.1",
"description": "A purely functional random number generator",
"main": "src/pure-random.js",
"scripts": {
"pretest": "gcc -o bin/xorshift bin/xorshift128.c",
"test": "mocha && bin/compare-test.sh",
"clean": "rm -f bin/xorshift"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Risto-Stevcev/pure-random.git"
},
"keywords": [
"random",
"number",
"generator",
"pure",
"fantayland",
"fantasy",
"land",
"csprng"
],
"author": "Risto Stevcev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Risto-Stevcev/pure-random/issues"
},
"homepage": "https://github.com/Risto-Stevcev/pure-random#readme",
"dependencies": {
"ramda": "^0.19.1",
"sanctuary": "^0.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"jsverify": "^0.7.1",
"mocha": "^2.4.5"
}
}