-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.17 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "callbag-jsx",
"version": "0.1.13",
"description": "callbags + JSX: super fast and super thiny interactive web apps",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"scripts": {
"start": "webpack serve --config ./conf/webpack/dev.conf.ts",
"watch": "webpack --config ./conf/webpack/dev.conf.ts --watch",
"test": "ts-node --files --project conf/typescript/test.json test.ts",
"build-bundle": "webpack --config ./conf/webpack/prod.conf.ts",
"build-es5": "tsc -p conf/typescript/es5.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-es5 && npm run build-es6",
"pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
"cov:inst": "nyc instrument --compact false src .instrumented",
"cov:gen": "nyc npm run test",
"cov:view": "nyc npm run test && npm run cov:clean",
"cov:travis": "nyc npm run test && npx codecov",
"cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/callbag-jsx.git"
},
"files": [
"dist/es6",
"dist/es5",
"dist/bundles",
"plugins"
],
"keywords": [
"JSX",
"callbags",
"frontend",
"web",
"apps",
"spa"
],
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/callbag-jsx/issues"
},
"homepage": "https://loreanvictor.github.io/callbag-jsx/",
"dependencies": {
"callbag": "^1.3.0",
"callbag-state": "^0.2.5",
"callbag-state-keyed": "^0.2.4",
"render-jsx": "^0.2.4"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/chai": "^4.2.14",
"@types/jsdom": "^16.2.4",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^8.0.4",
"@types/node": "^14.11.8",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"callbag-behavior-subject": "^1.2.0",
"callbag-debounce": "^2.1.2",
"callbag-expr": "^0.2.0",
"callbag-interval": "^1.1.0",
"callbag-map": "^1.1.0",
"callbag-pipe": "^1.2.0",
"callbag-subject": "^2.1.0",
"callbag-subscribe": "^1.5.1",
"callbag-tap": "^1.3.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"html-webpack-plugin": "^4.5.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"nyc-config-tsx": "^0.1.0",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^8.0.5",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3",
"webpack": "^5.1.1",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"nyc": {
"extends": "nyc-config-tsx",
"all": true,
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/test/*",
"src/types/*"
],
"reporter": [
"text",
"lcov"
]
}
}