-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.77 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rxrmi",
"version": "0.1.0",
"main": "./dist/cjs/source/index.js",
"module": "./dist/esm/index.js",
"source": "./source",
"sideEffects": true,
"scripts": {
"push": "yarn dist && node inc-version.js && npm publish",
"light": "yarn run dist:build:cjs && yarn test:js && yarn dist:build:bundle:dev:full",
"test": "mocha -r ts-node/register test/**/*.ts",
"test:js": "mocha dist/cjs/test/**/*.js",
"test:js:debug": "mocha --inspect-brk dist/cjs/test/**/*.js",
"dist": "yarn run dist:clean && yarn run dist:build && yarn run dist:copy",
"dist:build": "yarn run dist:build:cjs && yarn run dist:build:esm && yarn run dist:build:bundle",
"dist:build:bundle": "yarn run dist:build:bundle:dev && yarn run dist:build:bundle:dev:full && yarn run dist:build:bundle:prod && yarn run dist:build:bundle:prod:full",
"dist:build:bundle:dev": "webpack --config webpack.config.js",
"dist:build:bundle:dev:full": "webpack --config webpack.config.js --env full",
"dist:build:bundle:prod": "webpack --config webpack.config.js --env production",
"dist:build:bundle:prod:full": "webpack --config webpack.config.js --env production --env full",
"dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
"dist:build:cjs:watch": "tsc -w -p tsconfig-dist-cjs.json",
"dist:build:esm": "tsc -p tsconfig-dist-esm.json",
"dist:clean": "rimraf dist && rimraf bundles/* && mkdirp bundles",
"dist:copy": "cpy bundles/* dist/bundles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miginmrs/momjs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/miginmrs/rx-momjs/issues"
},
"homepage": "https://github.com/miginmrs/momjs#readme",
"directories": {
"lib": "lib"
},
"unpkg": "./bundles/index.min.umd.js",
"description": "",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.2",
"chai": "^4.2.0",
"cpy-cli": "^3.1.1",
"ignore-loader": "^0.1.2",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"mocha": "^8.1.1",
"rimraf": "^3.0.2",
"rxjs": ">=6.0.0",
"rxjs-umd": "miginmrs/rxjs-umd#builds",
"terser-webpack-plugin": "^5.0.1",
"ts-loader": "^8.0.3",
"ts-node": "^8.10.2",
"typescript": "^4.0.3",
"utility-types": "^3.10.0",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0"
},
"peerDependencies": {
"rxjs": ">=6.0.0",
"rxjs-umd": "miginmrs/rxjs-umd#builds"
},
"dependencies": {
"altern-map": "miginmrs/altern-map#builds",
"deep-is": "^0.1.3",
"dependent-type": "miginmrs/dependent-type#builds",
"rx-async": "miginmrs/rx-async#builds"
},
"keywords": [
"RMI",
"Reactive",
"Store",
"Message",
"Middleware",
"Remote",
"RPC"
]
}