-
Notifications
You must be signed in to change notification settings - Fork 331
/
package.json
99 lines (99 loc) · 3.11 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "baconjs",
"description": "A small functional reactive programming lib for JavaScript.",
"version": "3.0.19",
"keywords": [
"bacon.js",
"bacon",
"frp",
"functional",
"reactive",
"programming",
"stream",
"streams",
"EventStream",
"Rx",
"RxJs",
"Observable"
],
"author": {
"name": "Juha Paananen",
"email": "[email protected]",
"url": "https://twitter.com/raimohanska"
},
"contributors": [
{
"name": "Daniel K",
"email": "[email protected]",
"url": "https://twitter.com/xflowwolf"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"@types/bluebird": "^3.5.26",
"@types/chai": "^4.1.7",
"@types/mocha": "^7.0.2",
"@types/node": "^14.6.0",
"@types/sinon": "^9.0.0",
"@types/zen-observable": "^0.8.0",
"benchmark": "^2",
"bluebird": "^3",
"browserify": "^16.2.3",
"browserstack-runner": "~0.9",
"chai": "^4",
"es6-promise": "^4",
"escodegen": "^1.11.1",
"esm": "^3.2.25",
"esprima": "^4.0.1",
"estraverse": "^5.1.0",
"jquery": "^3.3.1",
"jsstana": "^1.0.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"rollup": "^2.6.1",
"rollup-plugin-typescript2": "^0.27.0",
"rxjs": "^6",
"sinon": "^9.0.0",
"terser": "^4.3.9",
"ts-node": "^8.9.0",
"tsify": "^4.0.1",
"typedoc": "~0.18",
"typescript": "~3.8.3",
"uglify-js": "^3",
"zen-observable": "~0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/baconjs/bacon.js.git"
},
"homepage": "https://github.com/baconjs/bacon.js",
"scripts": {
"test": "npm run test:es6-modules && npm run test:ts-import && npm run test:unit",
"test:ts-import": "tsc --noEmit test/importing/importtest.ts",
"test:unit": "mocha -r ts-node/register test/*.ts test/notinbrowser/*.ts",
"test:es6-modules": "if node --experimental-modules -e ''; then mocha -r esm test/es6-modules/*.js; fi",
"perftest": "performance/PerformanceTest.ts",
"lint": "echo no linter at the moment",
"dist": "DIST_VERSION=$npm_package_version ./scripts/dist",
"prepublish": "npm run lint && npm run dist",
"version": "3.0.19",
"browsertest-bundle": "browsertest/browserify",
"browsertest-open": "open browsertest/mocha.runner.html",
"browserstack": "browsertest/browserstack",
"release": "scripts/release",
"watch": "node_modules/nodemon/bin/nodemon.js -w src -w test -e js,ts,json --ignore 'dist/*' --exec 'scripts/dist&&npm test'",
"watch-dist": "node_modules/nodemon/bin/nodemon.js -w src -e js,ts,json --ignore 'dist/*' --exec 'scripts/dist'",
"watch-doc": "node_modules/nodemon/bin/nodemon.js -w src -w README.md -e js,ts,json,md --ignore 'dist/*' --exec 'npm run typedoc'",
"watch-ts": "tsc --noEmit --watch",
"typedoc": "typedoc --out docs --ignoreCompilerErrors src --mode file --excludeNotExported"
},
"main": "dist/Bacon.js",
"module": "./dist/Bacon.mjs",
"exports": {
"import": "./dist/Bacon.mjs",
"require": "./dist/Bacon.js"
},
"types": "types/bacon.d.ts"
}