-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.02 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
{
"name": "rxline",
"version": "0.9.4",
"description": "rxjs-based task pipelines",
"keywords": [
"build",
"pipeline",
"make",
"tool",
"rxjs",
"stream",
"files",
"parallel",
"concurrent",
"observable"
],
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"scripts": {
"build": "tsc -p conf/typescript/es5.json && tsc -p conf/typescript/es6.json",
"pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
"test": "ts-node --project conf/typescript/test.json test.ts",
"cov:view": "nyc npm run test && npm run cov:clean",
"cov:sync": "nyc npm run test && npx codecov -t $(cat .codecov-token) && npm run cov:clean",
"cov:travis": "nyc npm run test && npx codecov",
"cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage"
},
"files": [
"dist/es6",
"dist/es5",
"dist/bundles",
"fs"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/rxline.git"
},
"author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/rxline/issues"
},
"homepage": "https://loreanvictor.github.io/rxline/",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"dependencies": {
"rxjs": "^6.5.4"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": ["src/**/*.ts"],
"exclude": ["src/**/test/*"],
"reporter": ["text", "lcov"]
}
}