-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 3.24 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
83
84
85
86
{
"name": "rxjs-extra",
"version": "2.0.1",
"description": "Collection of extra RxJS 6 operators, Observable creation methods, Observers and Subjects for common use-cases.",
"main": "index.js",
"sideEffects": false,
"scripts": {
"clean": "npm run clean_dist && npm run clean_tests2png && npm run clean_rxjs_repo",
"clean_dist": "rm -rf dist",
"clean_cjs": "rm -rf dist/cjs",
"clean_es5": "rm -rf dist/es5",
"clean_package": "rm -rf dist/package",
"clean_types": "rm -rf dist/typings",
"clean_tests2png": "rm -rf docs_app",
"clean_rxjs_repo": "rm -rf .rxjs-repo",
"bundle_es5": "npm run build_es5 && rollup -c && npm run closure_compile_es5",
"closure_compile_es5": "node tools/run-closure-compiler.js",
"build": "npm run build_es5 && npm run build_cjs && npm run build_types",
"build_es5": "npm run clean_es5 && tsc -p tsconfig.es5.json",
"build_cjs": "npm run clean_cjs && tsc -p tsconfig.cjs.json",
"build_types": "npm run clean_types && tsc -p tsconfig.types.json",
"test": "cross-env TS_NODE_PROJECT=tsconfig.spec.json mocha --opts spec/mocha.opts \"spec/**/*-spec.ts\"",
"test_full": "npm run clone_rxjs_repo && npm run test",
"tests2png": "npm run create_tests2png_dir && cross-env TS_NODE_PROJECT=tsconfig.spec.json mocha --opts spec/tests2png.opts \"spec/**/*-spec.ts\" && npm run move_generated_png",
"tests2png_full": "npm run prepare_tests2png && npm run tests2png && npm run clean_tests2png",
"clone_rxjs_repo": "npm run clean_rxjs_repo && git clone https://github.com/ReactiveX/rxjs.git --depth=1 .rxjs-repo",
"create_tests2png_dir": "npx mkdirp docs_app/content/img",
"prepare_tests2png": "npm run clean_tests2png && npm run clone_rxjs_repo",
"move_generated_png": "cp -R docs_app/content/img/* ./doc/marble-diagrams",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'spec/**/*.ts' 'demo/**/*.ts'",
"lint_fix": "npm run lint -- --fix",
"demo": "ts-node -P tsconfig.base.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinsik/rxjs-extra.git"
},
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable",
"Stream"
],
"author": "Martin Sikora",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinsik/rxjs-extra/issues"
},
"homepage": "https://github.com/martinsik/rxjs-extra#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/lodash": "^4.14.53",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^1.16.35",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"color": "^1.0.3",
"cross-env": "^6.0.3",
"escape-string-regexp": "^1.0.5",
"gm": "^1.23.0",
"google-closure-compiler-js": "^20170521.0.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"normalize-newline-cli": "^1.1.0",
"rollup": "^0.41.6",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.4.0",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.4.11",
"symbol-observable": "^1.0.4",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"typescript": "^3.4.1",
"webpack": "^2.4.1"
},
"peerDependencies": {
"rxjs": "^6.0.0"
},
"typings": "index.d.ts"
}