-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@connectv/sdh",
"version": "0.3.0",
"description": "Library for Static (Server-side) and Dynamic (Client-side) HTML rendering",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"sideEffects": false,
"files": [
"dist/es6",
"dist/es5",
"transport"
],
"scripts": {
"start": "ts-node ./samples/index.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CONNECT-platform/connective-sdh.git"
},
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CONNECT-platform/connective-sdh/issues"
},
"homepage": "https://github.com/CONNECT-platform/connective-sdh#readme",
"dependencies": {
"@connectv/html": "^0.2.6",
"@types/jsdom": "^16.1.0",
"@types/jsdom-global": "^3.0.2",
"@types/webpack": "^5.28.0",
"jsdom": "^16.2.1",
"jsdom-global": "^3.0.2",
"rxjs": "^6.5.5",
"rxline": "^0.9.2",
"ts-loader": "^9.3.1",
"webpack": "^5.74.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}