-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "fecmjs",
"version": "2.0.7",
"description": "Collection of common front-end methods to facilitate normal development. Applicable to mobile terminal (some methods come from the Internet).Modular development for easy reference.Support 'tree shaking' to reduce packing volume",
"module": "./dist/fecmjs.esm.js",
"files": [
"dist",
"README_CN.md"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && rollup --config",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limingcan562/fecmjs.git"
},
"keywords": [
"method",
"common",
"front end",
"library"
],
"author": "limingcan",
"license": "ISC",
"bugs": {
"url": "https://github.com/limingcan562/fecmjs/issues"
},
"homepage": "https://github.com/limingcan562/fecmjs#readme",
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"less": "^4.1.2",
"postcss": "^8.4.6",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}