forked from materializecss/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.43 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
{
"name": "@materializecss/materialize",
"description": "Builds Materialize distribution packages",
"author": "Alvin Wang, Alan Chang",
"homepage": "https://materializecss.github.io/materialize/",
"version": "2.0.1-alpha",
"main": "dist/js/materialize.js",
"style": "dist/css/materialize.css",
"sass": "sass/materialize.scss",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/materializecss/materialize.git"
},
"bugs": {
"url": "https://github.com/materializecss/materialize/issues"
},
"scripts": {
"dev": "grunt monitor",
"test": "grunt test",
"release": "grunt release",
"watch": "webpack --watch",
"precommit": "lint-staged",
"docs": "grunt docs",
"commit": "npx cz",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"lint-staged": {
"js/*.js": [
"prettier --write",
"git add"
]
},
"engine": "node >= 6",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"autoprefixer": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"commitlint": "^17.0.3",
"cz-conventional-changelog": "^3.3.0",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-browser-sync": "^2.2.0",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-compress": "^1.4.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^3.0.0",
"grunt-contrib-pug": "^3.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": "^5.0.0",
"husky": "^8.0.1",
"jasmine": "^3.8.0",
"jstransformer-markdown-it": "^3.0.0",
"lint-staged": "^7.0.5",
"node-archiver": "^0.3.0",
"phantomjs-prebuilt": "^2.1.14",
"pinst": "^3.0.0",
"prettier": "^1.12.1",
"sass": "^1.35.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"files": [
"dist",
"extras",
"src/**/*.ts",
"sass/**/*.scss",
"Gruntfile.js",
"LICENSE"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"animejs": "^3.2.1"
}
}