forked from Dogfalo/materialize
-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
76 lines (76 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
{
"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.1",
"style": "dist/css/materialize.css",
"sass": "sass/materialize.scss",
"typings": "dist/js/materialize.d.ts",
"license": "MIT",
"main": "dist/js/materialize.js",
"module": "./dist/js/materialize.mjs",
"exports": {
"import": "./dist/js/materialize.mjs",
"require": "./dist/js/materialize.cjs.js"
},
"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": {
"test": "npx jasmine-browser-runner runSpecs",
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"release": " npm run build && node ci/compress.js",
"preversion": "npm test",
"version": "npm run build && node ci/compress.js && git add -A dist src/index.ts"
},
"lint-staged": {
"js/*.js": [
"prettier --write",
"git add"
]
},
"browserslist": [
"last 2 versions",
"Chrome >= 30",
"Firefox >= 30",
"Safari >= 8"
],
"engine": "node >= 6",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.5.2",
"archiver": "^7.0.1",
"jasmine": "^5.1.0",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.2.0",
"rollup": "^4.20.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-zip": "^1.0.3",
"sass": "^1.77.8",
"tslib": "^2.6.3",
"typescript": "^5.4.3"
},
"files": [
"dist",
"sass/**/*.scss",
"LICENSE"
]
}