-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 1.5 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
{
"name": "rxemitter",
"version": "0.2.9",
"description": "rxemitter = rxjs + eventbus",
"main": "index.js",
"scripts": {
"tslint": "tslint -c tslint.json 'src/*.ts'",
"compile_cjs": "tsc ./src/index.ts -m commonjs --outDir ./dist/cjs --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --target ES5 -d --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node",
"compile_es6": "tsc ./src/index.ts -m es2015 --sourceMap --outDir ./dist/es6 --target ES5 -d --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node --noEmitHelpers --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom ",
"clean_cjs": "shx rm -rf ./dist/cjs",
"clean_es6": "shx rm -rf ./dist/es6",
"cjs": "npm-run-all clean_cjs compile_cjs",
"es6": "npm-run-all clean_es6 compile_es6",
"package": "node .makepackage.js",
"publish": "cd ./dist/cjs && npm publish",
"all": "npm-run-all es6 cjs package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drawcall/RxEmitter.git"
},
"author": "drawcall",
"license": "ISC",
"bugs": {
"url": "https://github.com/drawcall/RxEmitter/issues"
},
"homepage": "https://github.com/drawcall/RxEmitter#readme",
"devDependencies": {
"npm-run-all": "^4.0.2",
"rxjs": "^5.2.0",
"shx": "^0.3.4",
"tslint": "^6.1.3",
"typescript": "^2.3.2"
}
}