-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "observables-with-streams",
"version": "0.6.1",
"description": "A library of observables built with streams",
"scripts": {
"fmt": "prettier --write './{src,tests}/**/*.ts' *.{md,json,js}",
"build": "tsc -p . && rollup -c",
"docs": "typedoc --out docs --mode modules",
"test": "CHROME_ONLY=1 karma start ./karma.conf.cjs",
"prepublish": "npm run build"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"default": "./dist/index.js"
},
"author": "Surma <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^8.2.2",
"chai": "^4.2.0",
"karma": "^6.3.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^5.5.1",
"mocha": "^8.4.0",
"prettier": "^2.3.1",
"rollup": "^2.50.6",
"rollup-plugin-terser": "^7.0.2",
"typedoc": "^0.20.36",
"typescript": "4.2"
}
}