-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 3.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "spadille",
"version": "0.0.3",
"description": "Verifiable/deterministic fair tickets generation for lotteries, raffles and gambling games.",
"main": "build/spadille/index.js",
"browser": "dist/index.js",
"types": "types/spadille.d.ts",
"scripts": {
"build:back": "babel src -d build --minified --no-comments --compact",
"build": "yarn run build:back && yarn run build:front",
"build:front": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"lint": "standard --verbose",
"pretest": "yarn run lint && yarn run build",
"test:back": "LIB_DIR=build/spadille/index.js jest --verbose",
"test:front": "LIB_DIR=dist/index.js BROWSER_ENV=1 jest --verbose --preset jest-puppeteer",
"test": "yarn run test:back && yarn run test:front",
"precoverage": "yarn run test",
"coverage": "LIB_DIR=src/spadille jest --coverage",
"prereport": "yarn run coverage",
"report": "cat coverage/lcov.info | coveralls",
"jekyll:setup": "cd docs && bundle install --path vendor/bundle && cd ..",
"jekyll:build": "cp README.md docs/index.md",
"prejekyll:serve": "yarn run jekyll:build",
"jekyll:serve": "cd docs && bundle exec jekyll serve && cd ..",
"prepublish": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoonroad/spadille.git"
},
"keywords": [
"gambling",
"provably-fair",
"secure-multi-party-computation",
"commitment-schemes",
"random-number-generators",
"pseudo-random-generator",
"brazillian-lotteries",
"casino",
"betting",
"javascript",
"lottery",
"lotteries",
"raffle",
"raffles",
"cryptography",
"hmac",
"web-crypto",
"web-cryptography-api",
"rng",
"prng"
],
"author": "Marco Aurélio da Silva (marcoonroad@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoonroad/spadille/issues"
},
"jest": {
"coveragePathIgnorePatterns": [
"./node_modules/",
"./support/",
"./TRASH/"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/support/**",
"!**/dist/**",
"!**/build/**",
"!**/docs/**",
"!**/coverage/**",
"!**/rollup.config.js"
]
},
"standard": {
"ignore": [
"dist/",
"build/",
"node_modules/"
],
"parser": "babel-eslint"
},
"homepage": "https://spadille.marcoonroad.dev",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.24.1",
"coveralls": "^3.0.2",
"cuid": "^2.1.6",
"eslint": "^6.0.1",
"jest": "^23.6.0",
"jest-puppeteer": "^4.2.0",
"jsdom": "^13.2.0",
"puppeteer": "^1.18.1",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.4",
"standard": "^12.0.1"
}
}