-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
149 lines (149 loc) · 3.84 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "yours-core",
"version": "0.4.3",
"description": "It's cool when users own their content.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/gulp build",
"standard": "./node_modules/.bin/standard *.js lib/**/*.js bin/**/*.js server/**/*.js test/**/*.js test/**/*.jsx",
"test-format": "npm run standard",
"test-node": "./node_modules/.bin/gulp test-node",
"test-karma": "./node_modules/.bin/gulp test-karma",
"test-both": "npm run test-node && npm run test-karma",
"test": "npm run test-format && npm run test-both",
"test-files": "./node_modules/.bin/mocha --compilers .jsx:babel-core/register --require=fullnode",
"serve-localapi-mainnet": "YOURS_CORE_BLOCKCHAIN_API_URI=http://localhost:3001/insight-api/ ./node_modules/.bin/gulp serve",
"serve-localapi-testnet": "FULLNODE_NETWORK=testnet YOURS_CORE_BLOCKCHAIN_API_URI=http://localhost:3002/insight-api/ ./node_modules/.bin/gulp serve",
"serve-mainnet": "./node_modules/.bin/gulp serve",
"serve-testnet": "FULLNODE_NETWORK=testnet YOURS_CORE_BLOCKCHAIN_API_URI=https://test-insight.bitpay.com/api/ ./node_modules/.bin/gulp serve"
},
"engines": {
"node": ">=4.3.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/yoursnetwork/yours.git"
},
"contributors": [
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "John M. Villar Zavatti",
"email": "[email protected]"
},
{
"name": "Eric Martindale",
"email": "[email protected]"
},
{
"name": "Paul Salisbury",
"email": "[email protected]"
},
{
"name": "go1dfish",
"email": "[email protected]"
},
{
"name": "George Vaccaro",
"email": "[email protected]"
},
{
"name": "Chris Robinson",
"email": "[email protected]"
},
{
"name": "Mike Houston",
"email": "[email protected]"
},
{
"name": "Darren Mills",
"email": "[email protected]"
},
{
"name": "Deepak Rao",
"email": "[email protected]"
},
{
"name": "Logan Lowell",
"email": "[email protected]"
},
{
"name": "Clemens Ley",
"email": "[email protected]"
},
{
"name": "Willy Bruns",
"email": "[email protected]"
},
{
"name": "Johan Halseth",
"email": "[email protected]"
},
{
"name": "Omar Mashaal",
"email": "[email protected]"
},
{
"name": "Chris Marie Hamilton",
"email": "[email protected]"
},
{
"name": "Kyle Torpey",
"email": "[email protected]"
},
{
"name": "Ramki",
"email": "[email protected]"
}
],
"author": "Ryan X. Charles <[email protected]>",
"license": "MIT",
"dependencies": {
"asink": "1.0.4",
"express": "4.13.4",
"fullnode": "0.13.13",
"http-proxy": "1.13.2",
"isomorphic-fetch": "2.2.1",
"pouchdb": "5.3.1",
"pouchdb-find": "0.9.0"
},
"devDependencies": {
"babel-core": "6.7.6",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browser-sync": "2.11.2",
"browserify": "13.0.0",
"envify": "3.4.0",
"glob": "7.0.3",
"gulp": "3.9.1",
"gulp-karma": "0.0.5",
"gulp-mocha": "2.2.0",
"gulp-plumber": "1.1.0",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"karma": "0.13.22",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.2",
"mocha": "2.4.5",
"should": "8.3.0",
"sinon": "1.17.3",
"standard": "6.0.8"
}
}