-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "mithril-material-forms",
"version": "4.9.0",
"description": "Basic input form elements as mithril components",
"main": "dist/mmf.js",
"module": "distmodule/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf build; webpack",
"lint": "eslint components",
"watch": "watch 'npm run build' components lib styles",
"dist": "rm -rf dist; yarn dist:es5 && yarn dist:es6",
"dist:es5": "NODE_ENV=production webpack",
"dist:es6": "tsc --outDir distmodule --target ES2019",
"start": "webpack-dev-server --config webpack.docs.js",
"docs": "webpack --config webpack.docs.js",
"release": "npm run dist",
"prepublish": "npm run dist; npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sueddeutsche/mithril-material-forms.git"
},
"keywords": [
"mithril",
"material-design",
"html",
"form",
"input",
"sz",
"Süddeutsche",
"Zeitung"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "szdm",
"license": "MIT",
"bugs": {
"url": "https://github.com/sueddeutsche/mithril-material-forms/issues"
},
"homepage": "https://github.com/sueddeutsche/mithril-material-forms#readme",
"dependencies": {
"autosize": "^4.0.2",
"mithril": "^2.0.4"
},
"devDependencies": {
"@types/mithril": "2.0.3",
"@types/mocha": "8.0.0",
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"browser-env": "^3.2.0",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-optimize-regex": "1.2.0",
"eslint-plugin-promise": "^4.2.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "4.3.0",
"jsdom": "16.3.0",
"mocha": "8.0.1",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"sass-loader": "^9.0.2",
"sinon": "^9.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "3.0.8",
"ts-loader": "8.0.1",
"ts-node": "8.10.2",
"typescript": "3.9.7",
"url-loader": "^4.1.0",
"watch": "^1.0.2",
"webpack": "^4.44.0",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.0"
}
}