-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.08 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
{
"name": "dom-render",
"version": "1.0.98",
"main": "DomRender.js",
"license": "MIT",
"description": "html view template engine",
"keywords": [
"front",
"spa",
"SPA",
"view template",
"view",
"template",
"template engine",
"dom-render",
"front-end",
"framwork",
"node"
],
"author": "visualkhh <[email protected]> (https://github.com/visualkhh)",
"contributors": [
"sewoo <[email protected]> (https://github.com/sewoo)",
"SeoDH <[email protected]> (https://github.com/SeoDH)",
"tkyung (https://github.com/tkyungDev)",
"Hoil-Gang (https://github.com/khl1154)",
"hwangsero (https://github.com/hwangsero)"
],
"homepage": "https://github.com/visualkhh/dom-render",
"bugs": {
"url": "https://github.com/visualkhh/dom-render",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/visualkhh/dom-render"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"scripts": {
"build": "rm -rf dist && mkdir dist && cp package.json dist && tsc --outDir dist --declarationDir dist && rm -rf dist/dist && rollup -c",
"build:ts:watch": "rm -rf dist && mkdir dist && cp package.json dist && tsc --watch --outDir dist --declarationDir dist",
"bundle": "rollup -c",
"bundle:watch": "rollup -c -w",
"dev:start": "npm run start --workspace=dev",
"dev:serve": "npm run serve --workspace=dev",
"npm:build": "npm run build && cp package.json dist && cp .npmignore dist && cp README.MD dist && rm -rf dist/dist/bundle.js.map",
"npm:publish": "npm run npm:build && npm publish ./dist",
"tsc": "tsc",
"tsc:watch": "rm -rf ./dist && mkdir dist && cp package.json dist && tsc --watch --outDir dist --declarationDir dist --sourceMap true",
"test": "jest --detectOpenHandles --forceExit"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"mkdirp": "^1.0.4",
"rollup": "^2.60.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-watch": "^3.2.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}