-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "exprs-rx",
"version": "0.0.0",
"description": "Expressions for RxJS",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/es2015/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/exprs-rx.min.js",
"sideEffects": false,
"scripts": {
"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/exprs-rx.js",
"build:umd:min": "webpack --config configs/webpack.build.min.js -o dist/exprs-rx.min.js",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand"
},
"author": "Kostia Palchyk",
"license": "MIT",
"keywords": [
"rxjs",
"regexp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/expressions-for-reactive-streams/js-rx-exprs.git"
},
"bugs": {
"url": "https://github.com/expressions-for-reactive-streams/js-rx-exprs/issues"
},
"homepage": "https://github.com/expressions-for-reactive-streams/js-rx-exprs#readme",
"files": [
"dist",
"CHANGELOG",
"README.md"
],
"peerDependencies": {
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/jest": "24.0.24",
"clean-webpack-plugin": "3.0.0",
"jest": "24.9.0",
"rimraf": "3.0.0",
"rxjs": "^6.5.3",
"rxjs-marbles": "5.0.4",
"ts-jest": "24.2.0",
"ts-loader": "6.2.1",
"typescript": "3.7.4",
"webpack": "4.41.4",
"webpack-cli": "3.3.10",
"webpack-merge": "4.2.2"
}
}