-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
95 lines (95 loc) · 3.27 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
{
"name": "paratii-player",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "meteor run --settings settings-prod.json",
"dev": "meteor run --settings settings-dev.json",
"dev-concurrently": "concurrently --kill-others \"npm run testrpc\" \"meteor run --settings settings-dev.json\"",
"testrpc": "testrpc -a 10 --deterministic",
"test": "meteor --settings settings-dev.json test --driver-package practicalmeteor:mocha --port 8754",
"test-concurrently": "concurrently --kill-others \"npm run testrpc\" \"meteor --settings settings-dev.json test --driver-package practicalmeteor:mocha --port 8754\"",
"test-headless": "TEST_BROWSER_DRIVER=nightmare NODE_OPTIONS='--harmony' meteor test --settings settings-dev.json --once --driver-package dispatch:mocha --port 9999",
"lint": "standard",
"lint-fix": "standard --fix",
"chimp-watch": "chimp --ddp=http://localhost:3000 --mocha --path=tests --webdriverio.logLevel=silent --webdriverio.waitforTimeout=10000 --webdriverio.waitforInterval=200 --watch",
"chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests --webdriverio.logLevel=silent --webdriverio.waitforTimeout=60000 --webdriverio.waitforInterval=200",
"remove-watcher": "node .remove-watcher.js"
},
"precommit": [
"lint",
"remove-watcher"
],
"dependencies": {
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"browser-process-hrtime": "^0.1.2",
"chai": "^4.1.0",
"cids": "^0.5.2",
"clipboard": "^1.7.1",
"eth-lightwallet": "^2.5.6",
"hls.js": "^0.8.5",
"hlsjs-ipfs-loader": "github:ya7ya/hlsjs-ipfs-loader#paratii/latest",
"hooked-web3-provider": "^1.0.0",
"inline-worker": "^1.1.0",
"ipfs": "github:ya7ya/js-ipfs#paratii/v0.27.6",
"libp2p-websocket-star": "^0.4.0",
"meteor-node-stubs": "~0.2.4",
"mobile-detect": "^1.3.7",
"moment": "^2.19.1",
"multihashes": "^0.4.12",
"paratii-lib": "github:Paratii-Video/paratii-lib#master",
"paratii-protocol": "github:ya7ya/paratii-protocol#master",
"player.js": "^0.1.0",
"pretty-bytes": "^4.0.2",
"promisify-node": "^0.4.0",
"pull-filereader": "^1.0.1",
"pull-stream": "^3.6.0",
"stream-buffers": "^3.0.1",
"web3": "^0.19.1",
"webworker-threads": "^0.7.13",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"chimp": "^0.50.2",
"chromedriver": "^2.33.2",
"concurrently": "^3.5.0",
"core-js": "^2.4.1",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-meteor": "^4.1.6",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc": "^4.0.1",
"fibers": "^2.0.0",
"mobile-detect": "^1.3.7",
"mocha": "^3.4.1",
"nightmare": "^2.10.0",
"pre-commit": "^1.2.2",
"shell-source": "^1.1.0",
"shelljs": "^0.7.8",
"standard": "*"
},
"standard": {
"envs": [
"mocha",
"meteor"
],
"globals": [
"assert",
"browser",
"FlowRouter",
"Modal",
"server",
"Picker"
],
"ignore": [
"imports/lib/ethereum/from-ethereum-wallet",
"public/test/files/index.js",
"public/test/files/index.min.js"
]
}
}