-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.14 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
{
"name": "yours",
"version": "0.0.1",
"description": "Yours.",
"main": "index.js",
"scripts": {
"build": "gulp",
"test": "npm run test-format && npm run test-both",
"test-localapi": "npm run test-format && DATT_BLOCKCHAIN_API_URI=http://localhost:3001/insight-api/ npm run test-both",
"test-files": "mocha --compilers .jsx:babel-core/register",
"test-format": "npm run standard",
"test-both": "npm run test-node && npm run test-karma",
"test-node": "gulp test-node",
"test-karma": "gulp test-karma",
"serve-localapi-mainnet": "DATT_BLOCKCHAIN_API_URI=http://localhost:3001/insight-api/ gulp serve",
"serve-localapi-testnet": "FULLNODE_NETWORK=testnet DATT_BLOCKCHAIN_API_URI=http://localhost:3002/insight-api/ gulp serve",
"serve-mainnet": "gulp serve",
"serve-testnet": "FULLNODE_NETWORK=testnet DATT_BLOCKCHAIN_API_URI=https://test-insight.bitpay.com/api/ gulp serve",
"watch-test-node-localapi": "DATT_BLOCKCHAIN_API_URI=http://localhost:3001/insight-api/ gulp watch-test-node",
"watch-test-node": "gulp watch-test-node",
"core-coverage": "istanbul cover -v _mocha -- test/**/*.js -R spec",
"standard": "standard *.js core/**/*.js bin/**/*.js server/**/*.js test/**/*.js test/**/*.jsx react/**/*.js react/**/*.jsx"
},
"engines": {
"node": ">=4.3.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/dattnetwork/yours.git"
},
"contributors": [
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Steven McKie",
"email": "[email protected]"
},
{
"name": "Anupam Mishra",
"email": "[email protected]"
}
],
"author": "Ryan X. Charles <[email protected]>",
"license": "MIT",
"dependencies": {
"asink": "1.0.4",
"datt": "0.2.0",
"express": "4.13.4",
"fullnode": "0.11.10",
"http-proxy": "1.13.2",
"peer": "0.2.8",
"peerjs": "0.3.14",
"pouchdb": "5.2.1",
"q": "1.4.1",
"react": "0.14.7",
"react-bootstrap-modal": "^2.0.0",
"react-dom": "0.14.7",
"react-markdown": "2.0.1",
"react-router": "2.0.0",
"request": "2.69.0",
"workerpool": "1.1.0"
},
"devDependencies": {
"babel-core": "6.5.2",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"bootstrap": "3.3.6",
"browser-sync": "2.11.1",
"browserify": "13.0.0",
"envify": "3.4.0",
"glob": "7.0.0",
"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",
"istanbul": "0.4.2",
"jsdom": "8.0.4",
"karma": "0.13.21",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.2",
"mocha": "2.4.5",
"react-addons-test-utils": "0.14.7",
"reactify": "1.1.1",
"should": "8.2.2",
"sinon": "1.17.3",
"standard": "6.0.7",
"through2": "2.0.1",
"watchify": "3.7.0"
}
}