-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.1 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": "most-rx-utils",
"description": "A helpful library that provides some utility functions based on RxJS for Most.js",
"version": "1.1.3",
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"author": "Carlos Zimmerle <[email protected]> (github.com/carloszimm)",
"homepage": "https://github.com/mostjs-community/most-rx-utils#readme",
"bugs": {
"url": "https://github.com/mostjs-community/most-rx-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs-community/most-rx-utils.git"
},
"keywords": [
"most",
"mostjs",
"reactive",
"rxjs",
"reactivex",
"utils"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:es2015 && npm run build:umd",
"build:commonjs": "./node_modules/.bin/tsc -P cfg/tsconfig.commonjs.json",
"build:es2015": "./node_modules/.bin/tsc -P cfg/tsconfig.es2015.json",
"build:umd": "rollup -c --name mostRxUtils && uglifyjs dist/most-rx-utils.js -o dist/most-rx-utils.min.js",
"prepublish": "npm run build",
"preversion": "npm run build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "./node_modules/.bin/tslint -p tsconfig.json -c tslint.json src/*.ts",
"test:unit": "./node_modules/.bin/mocha -r ts-node/register --exit src/*.test.ts"
},
"dependencies": {
"@most/prelude": "^1.7.3",
"most-subject": "^6.0.0",
"most-last": "^2.1.0"
},
"devDependencies": {
"@most/core": "^1.5.0",
"@most/types": "^1.0.2",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.47",
"@types/power-assert": "^1.5.0",
"mocha": "^6.0.2",
"power-assert": "^1.5.0",
"rollup": "^0.58.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.13.0",
"ts-node": "^8.10.2",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^3.9.5",
"uglify-js": "^3.5.2"
},
"peerDependencies": {
"@most/core": "^1.2.3"
},
"files": [
"dist",
"lib",
"lib.es2015"
]
}