-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.81 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
{
"name": "mahal",
"version": "1.9.1",
"description": "Simple, modern web application framework for UI development.",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"keywords": [
"ui",
"mahal",
"html",
"framework",
"simple"
],
"scripts": {
"install:compiler": "node build_helper/compiler_installer.js",
"install:util": "node build_helper/util_installer.js",
"build": "npm run webpack:dev",
"build:compiler:dev": "npm run install:compiler && npm run webpack:dev",
"build:pack": "npm run build && npm run webpack:test && npm pack",
"build:test": "npm run install:compiler && npm run build:pack && npm run test",
"test": "cd tests && npm run install:test",
"test:prod": "cd tests && npm run install:test:prod",
"lint": "tslint src/**/*.ts",
"build:test:dev": "npm run build && npm run test",
"build:test:prod": "npm run build && npm run test:prod",
"build:dev": "npm run lint && npm run build",
"build:prod": "npm run webpack:prod",
"pack:test": "npm pack && npm run test",
"pack:test:prod": "npm pack && npm run test:prod",
"build:all": "npm run webpack:dev && npm run webpack:prod && npm run webpack:test",
"install:compiler@latest": "cd tests && npm i @mahaljs/html-compiler@latest",
"install:util@latest": "cd tests && npm i @mahaljs/util@latest",
"install:ci@latest": "npm run install:compiler@latest && npm run install:util@latest",
"build:ci": "npm run lint && npm run build:all && npm pack && npm run install:ci@latest && npm run pack:test && npm run pack:test:prod",
"webpack:dev": "webpack --config webpack/webpack.dev.config.js",
"webpack:test": "webpack --config webpack/webpack.test.config.js",
"webpack:prod": "webpack --config webpack/webpack.prod.config.js",
"clean": "del dist",
"deploy": "npm run clean && npm run build:ci",
"un:module": "cd tests && npm un mahal && npm un mahal-html-compiler",
"install:same:version": "cd tests && node install_same_version.js",
"prepublishOnly": "npm run install:same:version && npm run deploy",
"prepare:husky": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ujjwalguptaofficial/mahal.git"
},
"author": "Ujjwal Gupta <https://ujjwalguptaofficial.github.io/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ujjwalguptaofficial/mahal/issues"
},
"homepage": "https://github.com/ujjwalguptaofficial/mahal#readme",
"devDependencies": {
"@types/node": "^14.6.2",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^6.1.1",
"del-cli": "^4.0.1",
"html-tags": "^3.3.1",
"husky": "^7.0.4",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-merge": "^5.1.1"
}
}