-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "most-exhaust-map",
"description": "exhaustMap operator for Most.js",
"version": "1.0.3",
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"author": "usp",
"homepage": "https://github.com/mostjs-community/exhaust-map#readme",
"bugs": {
"url": "https://github.com/mostjs-community/exhaust-map/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs-community/exhaust-map.git"
},
"keywords": [
"most",
"mostjs",
"reactive",
"event",
"async",
"stream"
],
"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 most-exhaust-map && uglifyjs dist/index.js -o dist/index.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 src/*.test.ts"
},
"dependencies": {
"@most/disposable": "^1.2.1",
"@most/prelude": "^1.7.2",
"@most/scheduler": "^1.2.2"
},
"devDependencies": {
"@most/core": "^1.3.0",
"@most/types": "^1.0.0",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.6",
"@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": "^6.0.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.2",
"uglify-js": "^3.0.14"
},
"files": [
"dist",
"lib",
"lib.es2015",
"src"
],
"peerDependencies": {
"@most/core": "^1.2.3"
}
}