forked from nimiq/core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.72 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@nimiq/core",
"version": "1.1.2",
"main": "dist/node.js",
"homepage": "https://nimiq.com/",
"description": "",
"scripts": {
"prepare": "gulp build-node",
"build": "gulp build",
"build-deb": "gulp --architecture=`dpkg --print-architecture` prepare-packages && cd packaging/BUILD && mv build/nimiq_node_generic.node build/nimiq_node.node && mv fakeroot/etc/nimiq/sample.conf fakeroot/etc/nimiq/nimiq.conf && node-deb --no-default-package-dependencies x -- node *.js cron-deb.sh VERSION build/ lib/ modules/ && mv *.deb ../../dist/",
"build-rpm": "gulp --architecture=`arch` prepare-packages && cd packaging && mv BUILD/build/nimiq_node_generic.node BUILD/build/nimiq_node.node && mv BUILD/fakeroot/etc/nimiq/sample.conf BUILD/fakeroot/etc/nimiq/nimiq.conf && rpmbuild -bb SPECS/nimiq.spec && mv RPMS/x86_64/*.rpm ../dist",
"esdoc": "esdoc",
"test": "jasmine && gulp test",
"test-node": "jasmine",
"test-browser": "gulp test",
"lint": "gulp eslint"
},
"author": {
"name": "The Nimiq Core Development Team",
"url": "https://nimiq.com/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nimiq-network/core/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nimiq-network/core.git"
},
"engines": {
"node": ">=7.9.0"
},
"files": [
"dist/node.js",
"binding.gyp",
"src/native"
],
"node_deb": {
"package_name": "nimiq",
"version": "1.1.2-1",
"init": "systemd",
"architecture": "none",
"install_strategy": "copy",
"description": "Nimiq node.js client",
"maintainer": "The Nimiq Core Development Team <[email protected]>",
"extra_files": "fakeroot",
"templates": {
"executable": "nimiq",
"default_variables": "default",
"postinst": "postinst",
"postrm": "postrm",
"prerm": "prerm",
"systemd_service": "systemd.service"
},
"entrypoints": {
"daemon": "app/node /usr/share/nimiq/app/index.js"
}
},
"gypfile": true,
"dependencies": {
"@nimiq/jungle-db": "^0.9.14-alpha",
"atob": "^2.0.3",
"bindings": "^1.3.0",
"btoa": "^1.1.2",
"chalk": "^2.3.2",
"json5": "^1.0.1",
"lodash.merge": "^4.6.1",
"minimist": "^1.2.0",
"nan": "^2.10.0",
"uws": "^9.14.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-runtime": "^6.26.0",
"browserify": "^16.1.1",
"codecov": "^3.0.0",
"esdoc": "^1.0.4",
"esdoc-es7-plugin": "^0.0.3",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^4.0.2",
"gulp-jasmine-livereload-task": "^0.11.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-streamify": "^1.0.2",
"gulp-string-replace": "^1.0.0",
"gulp-uglify-es": "^1.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.0",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^3.1.0",
"jasmine-console-reporter": "^3.0.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "*",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"merge2": "^1.2.1",
"node-deb": "^0.10.4",
"node-gyp": "^3.6.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"optionalDependencies": {
"bufferutil": "^3.0.4",
"utf-8-validate": "^4.0.1"
}
}