-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 940 Bytes
/
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
{
"name": "nodecg-rx",
"version": "0.1.3",
"description": "RxJS integration for NodeCG",
"main": "dist/bundles/nodecg-rx.min.js",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:prod",
"build:dev": "webpack --display-error-details --progress --colors",
"build:prod": "webpack --config webpack.config.prod.js --display-error-details --progress --colors",
"clean": "rimraf dist"
},
"keywords": [
"rxjs",
"nodecg"
],
"author": "Nils-Börge Margotti",
"repository": {
"type": "git",
"url": "https://github.com/nols1000/nodecg-rx.git"
},
"license": "GPL-3.0-only",
"devDependencies": {
"rimraf": "^3.0.0",
"rxjs": "^6.4.0",
"ts-loader": "^5.4.5",
"typescript": "^3.3.3333",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"peerDependencies": {
"rxjs": "^6.4.0"
}
}