-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "@dashevo/dark-gravity-wave",
"version": "1.1.1",
"description": "Dark Gravity Wave difficulty retarget algorithm in JavaScript",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pkgverchk": "test $(jq -r .version package.json) = $(jq -r .version package-lock.json)",
"test": "mocha",
"clean": "rm -rfv dist",
"browserify": "browserify -e index.js -r ./index.js:dgw -o dist/dark-gravity-wave.js",
"tinyify": "browserify -p tinyify -e index.js -r ./index.js:dgw -o dist/dark-gravity-wave.min.js",
"build": "npm run browserify && npm run tinyify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/dark-gravity-wave-js.git"
},
"keywords": [
"dash",
"dark gravity wave"
],
"author": "quantumexplorer",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/dark-gravity-wave-js/issues"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"tinyify": "^2.5.0"
}
}