-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.69 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
{
"name": "coffeescript-ui",
"version": "1.7.1",
"description": "Coffeescript User Interface System",
"scripts": {
"build": "npm run rmdist && npm run gulp && webpack --progress --env development=true",
"build:production": "npm run rmdist && npm run gulp && webpack --progress --env production=true",
"build:watch": "npm run rmdist && webpack --watch --progress",
"build:all": "npm run rmdist && npm run gulp && webpack --progress --env development=true --env all=true && webpack --progress --env production=true --env all=true",
"build:min": "npm run build:production",
"build:docs": "node_modules/coffee-script/bin/coffee GenerateDocs.coffee",
"test": "jest",
"rmdist": "rimraf public/*",
"gulp": "gulp svgstore thirdparty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programmfabrik/coffeescript-ui.git"
},
"main": "public/cui.min.js",
"keywords": [
"coffeescript",
"ui",
"user",
"interface",
"gui",
"interface",
"library"
],
"author": "Programmfabrik GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/programmfabrik/coffeescript-ui/issues"
},
"homepage": "https://github.com/programmfabrik/coffeescript-ui#readme",
"devDependencies": {
"ace-builds": "^1.4.14",
"autoprefixer": "^9.8.6",
"babel-jest": "^21.2.0",
"base64-inline-loader": "^2.0.1",
"clean-webpack-plugin": "^4.0.0",
"codo": "^2.1.2",
"coffee-loader": "0.9.0",
"coffeescript": "^1.12.7",
"coordinate-parser": "^1.0.7",
"css-loader": "^3.6.0",
"cssnano": "^4.1.11",
"email-addresses": "^5.0.0",
"file-loader": "^5.1.0",
"formatcoords": "^1.1.3",
"gulp": "^4.0.2",
"gulp-cheerio": "^0.6.2",
"gulp-rename": "^1.2.2",
"gulp-svgmin": "^1.2.4",
"gulp-svgstore": "^5.0.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.2.4",
"hard-source-webpack-plugin": "^0.13.1",
"html-loader": "^0.5.1",
"jest": "^21.2.1",
"leaflet": "^1.7.1",
"leaflet-defaulticon-compatibility": "^0.1.2",
"less": "^2.7.2",
"load-google-maps-api": "^1.3.3",
"marked": "^0.7.0",
"mini-css-extract-plugin": "^2.7.5",
"moment": "^2.29.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.2",
"resolve-url-loader": "^5.0.0",
"rimraf": "^3.0.2",
"sass": "1.60.0",
"sass-loader": "10.0.5",
"style-loader": "^1.1.3",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-webpack-plugin": "^4.1.0",
"terser-webpack-plugin": "^5.3.7",
"through2": "^0.6.5",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"font-awesome": "^4.7.0",
"moment-timezone": "^0.5.33"
}
}