-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 2.83 KB
/
package.json
File metadata and controls
executable file
·94 lines (94 loc) · 2.83 KB
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
{
"name": "runtime-core",
"version": "0.17.0",
"description": "core runtime development",
"files": [
"dist"
],
"private": true,
"scripts": {
"test": "karma start",
"test:lint": "eslint --config .eslintrc.yml ./src/",
"build:doc": "./node_modules/.bin/esdoc -c esdoc.json",
"build:dev": "cross-env MODE=dev webpack && cp -r dist ../dev-protostubs/node_modules/runtime-core && cp -r dist ../dev-dsm-app/node_modules/runtime-core",
"build:dev:monitor": "cross-env MODE=dev cross-env MONITOR=true webpack",
"build:prod": "cross-env MODE=prod webpack -p",
"build:light": "cross-env MODE=light webpack",
"build": "cross-env MODE=dev webpack && cross-env MODE=prod webpack && cross-env MODE=light webpack"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:reTHINK-project/dev-runtime-core.git"
},
"keywords": [
"reThink",
"webRTC"
],
"author": "reThink Project",
"contributors": [
{
"name": "Vitor Silva",
"email": "vitor-t-silva@telecom.pt"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reTHINK-project/dev-runtime-core/issues"
},
"homepage": "https://rethink-project.eu/",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"exports-loader": "^0.7.0",
"loglevel": "^1.5.1",
"pouchdb": "^7.0.0",
"systemjs": "^3.1.6"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/parser": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.4",
"base64-url": "^1.3.3",
"bip39": "^2.4.0",
"bitcoinjs-lib": "^3.3.2",
"chai": "^4.1.2",
"chai-arrays": "^1.1.0",
"chai-as-promised": "^7.1.1",
"chai-json-schema": "^1.5.0",
"cross-env": "^5.1.3",
"dexie": "^1.5.1",
"dexie-observable": "^1.0.0-beta.4",
"esdoc": "^0.5.2",
"eslint": "^4.14.0",
"eslint-plugin-import": "^2.16.0",
"hex64": "^0.4.0",
"jsrsasign": "^7.2.2",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-html-reporter": "^0.2.7",
"karma-htmlfile-reporter": "^0.3.8",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.9",
"mocha": "3.4.2",
"proxy-observe": "^0.0.21",
"sinon": "^2.4.1",
"sinon-chai": "^2.14.0",
"sync-client": "^1.0.0-beta.11",
"tv4": "^1.2.7",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-monitor": "^1.0.14"
}
}