-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
107 lines (107 loc) · 2.98 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
{
"name": "@xenialab/angular-material-form-builder",
"version": "1.2.2",
"description": "Form builder for Angular Material (AngularJS version)",
"main": "dist/angular-material-form-builder.min.js",
"scripts": {
"prebuild": "npm test",
"build": "webpack --config webpack.config.js --mode development",
"start": "webpack serve --mode development",
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix",
"prettify": "prettier --write src/",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlio20/angular-material-form-builder.git"
},
"keywords": [
"AngularJS",
"angular-material",
"form-builder"
],
"author": "Vlad Ioffe",
"contributors": [
"Giuseppe Careri <[email protected]>",
"Daniele Cinti <[email protected]>",
"Andrea Bianco <[email protected]>",
"Vito Macchia <[email protected]>",
"Marco Messina <[email protected]>",
"Rodolfo Bevione <[email protected]>"
],
"engines": {
"node": ">=14",
"npm": ">=7"
},
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vlio20/angular-material-form-builder/issues"
},
"homepage": "https://github.com/vlio20/angular-material-form-builder#readme",
"peerDependencies": {
"angular": "^1.8.2",
"angular-animate": "^1.8.2",
"angular-aria": "^1.8.2",
"angular-material": ">=1.1.26 <=1.2.3",
"angular-messages": "^1.8.2",
"angular-sortable-view": ">=0.0.17",
"mdi": "^2.2.43"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@types/jest": "^27.0.3",
"angular": "^1.8.2",
"angular-animate": "^1.8.2",
"angular-aria": "^1.8.2",
"angular-material": "^1.2.3",
"angular-messages": "^1.8.2",
"angular-mocks": "^1.8.2",
"angular-sortable-view": "0.0.21",
"angularjs-jest": "^0.1.4",
"babel-loader": "^8.2.3",
"babel-plugin-angularjs-annotate": "^0.10.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"eslint": "^8.4.1",
"eslint-config-node": "^4.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-raw-loader": "^1.0.1",
"lint-staged": "^12.1.2",
"mdi": "^2.2.43",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.5",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"lint-staged": {
"./*.js": [
"prettier --write",
"eslint"
],
"src/**/*.*": [
"prettier --write"
],
"src/**/*.js": [
"eslint"
]
}
}