forked from CounterpartyXCP/counterwallet
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.85 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
{
"name": "counterwallet-monaparty",
"description": "Counterwallet for Monaparty",
"author": "Counterparty development team",
"license": "(CDDL-1.0)",
"version": "1.8.0",
"main": "build/index.html",
"repository": {
"type": "git",
"url": "https://github.com/monaparty/counterwallet.git"
},
"dependencies": {
"cryptojs": "2.5.3",
"transifex": "1.6.6"
},
"devDependencies": {
"bower": "1.8.14",
"browserify": "17.0.0",
"chai": "4.3.0",
"clean-css": "2.2.22",
"express": "4.17.1",
"express-http-proxy": "1.6.2",
"grunt": "1.5.3",
"grunt-chrome-compile": "0.2.2",
"grunt-cli": "1.4.3",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-filerev": "^2.3.1",
"grunt-sass": "3.1.0",
"grunt-usemin": "3.1.1",
"load-grunt-tasks": "^5.1.0",
"mocha": "8.3.0",
"mocha-phantomjs": "4.1.0",
"node-sass": "7.0.1",
"serve": "11.3.2",
"uglify-js": "3.16.2"
},
"scripts": {
"bower": "cd src && bower --allow-root --config.interactive=false update",
"bitcoinjs-lib": "(cd src/vendors/bitcoinjs-lib && npm install) && browserify --standalone bitcoinjs src/vendors/bitcoinjs-lib/src/index.js | uglifyjs -c --mangle reserved=['BigInteger','ECPair','Point'] -o src/vendors/bitcoinjs-lib/bitcoinjs.min.js",
"serve": "serve -p 3000 ./build",
"grunt": "grunt build --dontcheckdeps",
"build": "npm run bower && npm run bitcoinjs-lib && npm run grunt",
"dev": "grunt build --dontcheckdeps --dontminify",
"q": "grunt build --dontcheckdeps",
"test": "./node_modules/mocha-phantomjs/bin/mocha-phantomjs test/test.html --ignore-ssl-errors=true --ignore-resource-errors --ssl-protocol=any # phantomjs has issues with counterwallet.io SSL cert"
},
"engine": "node >= 0.10"
}