-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "rxjs-take-while-inclusive",
"version": "2.1.1",
"description": "An operator equal to the takeWhile operator but also emits the last value.",
"author": {
"email": "matthias.kunnen@gmail.com",
"name": "Matthias Kunnen"
},
"es2015": "lib/index.js",
"main": "lib/cjs/index.js",
"module": "lib/_esm5/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"keywords": [
"RxJS",
"Take While",
"Take While Inclusive"
],
"scripts": {
"build": "npm-run-all clean_lib build_cjs build_esm5 build_esm2015",
"build_cjs": "npm-run-all clean_lib_cjs && npm run compile_lib_cjs",
"build_esm5": "npm-run-all clean_lib_esm5 compile_lib_esm5",
"build_esm2015": "npm-run-all clean_lib_esm2015 compile_lib_esm2015",
"clean_lib": "rimraf ./lib",
"clean_lib_cjs": "rimraf ./lib/cjs",
"clean_lib_esm5": "rimraf ./lib/esm5",
"clean_lib_esm2015": "rimraf ./lib/esm2015",
"compile_lib_cjs": "tsc -p ./tsconfig/tsconfig.cjs.json",
"compile_lib_esm5": "tsc -p ./tsconfig/tsconfig.esm5.json",
"compile_lib_esm2015": "tsc -p ./tsconfig/tsconfig.esm2015.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"rxjs": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MatthiasKunnen/rxjs-take-while-inclusive"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"typescript": "~2.8.1"
},
"files": [
"/lib"
]
}