forked from vrimar/construct-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.78 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
108
109
110
111
112
113
114
115
116
117
118
{
"name": "construct-ui",
"version": "0.1.7",
"description": "A Mithril.js UI library",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"sideEffects": [
"*.css"
],
"scripts": {
"lint": "tslint src/**/*.ts docs/**/*.ts test/**/*.ts",
"lint:fix": "tslint --fix src/**/*.ts docs/**/*.ts test/**/*.ts",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha",
"test:watch": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha --watch",
"watch": "npm-run-all --parallel watch:js watch:css",
"watch:js": "tsc --watch",
"watch:css": "node-sass -w src/ -o lib/",
"build:umd": "webpack --mode=production",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc",
"clean:css": "cleancss --level 2 lib/index.css -o lib/index.css",
"build:css": "node-sass src/ -o lib/ && npm run clean:css",
"build": "npm run lint && npm run test && npm-run-all --parallel build:cjs build:esm build:umd build:css",
"clean:docs": "cd docs && rimraf public/*",
"build:docs": "npm run generate:docs && npm run clean:docs && cd docs && cross-env NODE_ENV=production webpack",
"watch:docs": "cd docs && webpack-dev-server --hot",
"generate:docs": "documentalist src/**/* > docs/generated/docs.json",
"generate:icons": "node scripts/generateIcons.js",
"build:all": "npm run build && npm run build:docs",
"deploy:docs": "gh-pages -d docs/public",
"version": "npm run build:all && git add *",
"postversion": "git push && git push --tags && npm publish && npm run deploy:docs"
},
"peerDependencies": {
"mithril": ">=1.1.6"
},
"dependencies": {
"classnames": "^2.2.6",
"enquire.js": "^2.1.6",
"feather-icons": "^4.10.0",
"lodash.debounce": "^4.0.8",
"mithril-transition-group": "^0.1.7",
"popper.js": "^1.14.6",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/element-resize-event": "^2.0.0",
"@types/jsdom": "^12.2.1",
"@types/lodash.debounce": "^4.0.4",
"@types/mithril": "^1.1.14",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/tinycolor2": "^1.4.1",
"@types/webpack-env": "^1.13.6",
"assert": "^1.4.1",
"autoprefixer": "^9.4.4",
"awesome-typescript-loader": "^5.2.1",
"clean-css": "^4.2.1",
"clean-css-cli": "^4.2.1",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"documentalist": "^1.5.0",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"highlight.js": "^9.13.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.5.0",
"mithril": "^1.1.6",
"mocha": "^5.2.0",
"mq-polyfill": "^1.1.8",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"tinycolor2": "^1.4.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"author": "Vasil Rimar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vrimar/construct-ui.git"
},
"bugs": {
"url": "https://github.com/vrimar/construct-ui/issues"
},
"homepage": "https://vrimar.github.io/construct-ui",
"keywords": [
"ui-components",
"ui",
"mithril",
"mithril-component",
"mithriljs",
"typescript"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}