-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.43 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
{
"name": "render-jsx",
"version": "0.2.4",
"description": "render pure dom using JSX",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"scripts": {
"start": "webpack-dev-server --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-es5": "tsc -p conf/typescript/es5.json && cp -rf ./src/typings dist/es5 && rm -fr dist/es5/typings/index.ts",
"build-es6": "tsc -p conf/typescript/es6.json && cp -rf ./src/typings dist/es6 && rm -fr dist/es6/typings/index.ts",
"build": "npm run build-es5 && npm run build-es6",
"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/render-jsx.git"
},
"files": [
"dist/es6",
"dist/es5",
"common",
"component",
"dom",
"plugin"
],
"keywords": [
"JSX",
"frontend",
"render",
"framework",
"library",
"UI"
],
"author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/render-jsx/issues"
},
"homepage": "https://loreanvictor.github.io/render-jsx/",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.12",
"@types/jsdom": "^16.2.4",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@types/webpack": "^4.41.22",
"chai": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/test/*",
"src/types/*"
],
"reporter": [
"text",
"lcov"
]
}
}