-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.08 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
{
"name": "rxjs-proxify",
"version": "0.1.1",
"description": "Turns a Stream of Objects into an Object of Streams",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/es2015/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/rxjs-proxify.min.js",
"sideEffects": true,
"scripts": {
"start": "webpack --config configs/webpack.dev.js",
"clean": "rimraf temp dist",
"build": "npm run build:esm && npm run build:es2015 && npm run build:cjs && npm run build:types && npm run build:umd && npm run build:umd:min",
"build:esm": "tsc -p configs/tsconfig.esm.json",
"build:es2015": "tsc -p configs/tsconfig.es2015.json",
"build:cjs": "tsc -p configs/tsconfig.cjs.json",
"build:types": "tsc -p configs/tsconfig.types.json",
"build:umd": "webpack --config configs/webpack.build.js -o dist/rxjs-proxify.js",
"build:umd:min": "webpack --config configs/webpack.build.min.js -o dist/rxjs-proxify.min.js",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand",
"np": "npm run clean && npm run build && np",
"format:check": "prettier -c .",
"format:fix": "prettier --write .",
"format": "npm run format:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosich/rxjs-proxify.git"
},
"keywords": [
"rxjs",
"rp",
"frp",
"angular",
"javascript",
"typescript"
],
"author": "Kostiantyn Palchyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/kosich/rxjs-proxify/issues"
},
"homepage": "https://github.com/kosich/rxjs-proxify#readme",
"devDependencies": {
"@types/jest": "26.0.14",
"clean-webpack-plugin": "3.0.0",
"jest": "26.4.2",
"np": "6.5.0",
"prettier": "2.1.2",
"rimraf": "3.0.2",
"rxjs": "6.5.0",
"ts-jest": "26.3.0",
"ts-loader": "8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-merge": "5.1.4"
},
"peerDependencies": {
"rxjs": "^6.5.0"
},
"files": [
"dist"
]
}