forked from materializecss/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.03 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": "@materializecss/materialize",
"description": "The responsive front-end library based on Material Design from Google.",
"author": "The Materialize Team",
"homepage": "https://materializeweb.com",
"version": "2.1.0",
"main": "dist/js/materialize.js",
"style": "dist/css/materialize.css",
"sass": "sass/materialize.scss",
"typings": "dist/src/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/materializecss/materialize.git"
},
"bugs": {
"url": "https://github.com/materializecss/materialize/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/materializecss"
},
{
"type": "opencollective",
"url": "https://opencollective.com/materialize"
}
],
"scripts": {
"dev": "grunt monitor",
"test": "grunt test",
"release": "grunt release",
"watch": "webpack --watch",
"temp1": "grunt webpack:dev sass_compile",
"connect": "grunt connect:server:keepalive"
},
"lint-staged": {
"js/*.js": [
"prettier --write",
"git add"
]
},
"browserslist": [
"last 2 versions",
"Chrome >= 30",
"Firefox >= 30",
"Safari >= 8"
],
"engine": "node >= 6",
"devDependencies": {
"@types/node": "^20.5.2",
"autoprefixer": "^9.8.6",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-jasmine": "^4.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-postcss": "^0.9.0",
"grunt-remove-logging": "^0.2.0",
"grunt-rename-util": "^1.0.0",
"grunt-sass": "^3.1.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^6.0.0",
"jasmine": "^5.1.0",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.1.2",
"sass": "^1.35.2",
"ts-loader": "^9.4.2",
"typescript": "^5.4.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"files": [
"dist",
"sass/**/*.scss",
"LICENSE"
]
}