-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.07 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
{
"name": "react-rxjs-elements",
"version": "0.0.7",
"description": "React fragment for RxJS content",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/es2015/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/react-rxjs-elements.min.js",
"sideEffects": false,
"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",
"build:umd:min": "webpack --config configs/webpack.build.min.js -o dist",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand",
"np": "npm run clean && npm run build && np && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosich/react-rxjs-elements.git"
},
"keywords": [
"react",
"rxjs",
"javascript",
"typescript"
],
"author": "Kostiantyn Palchyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/kosich/react-rxjs-elements/issues"
},
"homepage": "https://github.com/kosich/react-rxjs-elements#readme",
"devDependencies": {
"@types/jest": "26.0.22",
"@types/react": "17.0.3",
"clean-webpack-plugin": "3.0.0",
"jest": "26.6.3",
"np": "7.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"ts-jest": "26.5.5",
"ts-loader": "8.1.0",
"typescript": "4.2.4",
"webpack": "5.33.2",
"webpack-cli": "4.6.0",
"webpack-merge": "5.7.3",
"webpack-rxjs-externals": "2.0.0"
},
"peerDependencies": {
"react": "16.x||17.x||18.x",
"rxjs": "6.x||7.x"
},
"files": [
"dist"
]
}