-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "@saltyrtc/chunked-dc",
"version": "2.0.1",
"description": "Binary chunking for WebRTC data channels & more.",
"main": "dist/chunked-dc.es5.min.js",
"jsnext:main": "dist/chunked-dc.es2015.js",
"module": "dist/chunked-dc.es2015.js",
"types": "chunked-dc.d.ts",
"scripts": {
"dist": "npm run dist_es5 && npm run dist_es5_min && npm run dist_es5_min_polyfill && npm run dist_es2015",
"dist_es5": "rollup -c rollup/es5.js",
"dist_es5_min": "rollup -c rollup/es5.min.js",
"dist_es5_min_polyfill": "rollup -c rollup/es5.min.polyfill.js",
"dist_es2015": "rollup -c rollup/es2015.js",
"rollup_tests": "rollup -c rollup/testing.js && rollup -c rollup/performance.js",
"validate": "tsc --noEmit",
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "karma start --single-run --log-level=debug --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/saltyrtc/chunked-dc-js.git"
},
"keywords": [
"saltyrtc",
"webrtc",
"ortc",
"chunking"
],
"author": "Threema GmbH",
"license": "MIT/Apache-2.0",
"bugs": {
"url": "https://github.com/saltyrtc/chunked-dc-js/issues"
},
"homepage": "https://github.com/saltyrtc/chunked-dc-js#readme",
"devDependencies": {
"@babel/core": "^7.1",
"@babel/polyfill": "^7.0",
"@babel/preset-env": "^7.1",
"jasmine-core": "^3.2.1",
"karma": "^6.3.6",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"knuth-shuffle-seeded": "^1.0.6",
"rollup": "^0.66",
"rollup-plugin-babel": "^4.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript": "^1.0",
"rollup-plugin-uglify": "^5.0.2",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"files": [
"dist",
"chunked-dc.d.ts",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}