-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "mdui.jq",
"version": "2.0.1",
"description": "拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库",
"main": "dist/jq.js",
"module": "dist/jq.esm.js",
"types": "es/index.d.ts",
"scripts": {
"eslint": "eslint --fix src/**/*.ts",
"test": "node build.js --test",
"build": "npm run eslint && tsc -p src/tsconfig.json && node build.js --build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"files": [
"dist",
"es",
"src",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zdhxiong/mdui.jq.git"
},
"keywords": [
"mdui",
"jQuery",
"JQ"
],
"author": "zdhxiong",
"license": "MIT",
"bugs": {
"url": "https://github.com/zdhxiong/mdui.jq/issues"
},
"homepage": "https://github.com/zdhxiong/mdui.jq#readme",
"dependencies": {
"mdn-polyfills": "^5.20.0",
"promise-polyfill": "^8.2.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-typescript": "^8.2.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"acorn": "^8.0.5",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jquery": "^3.5.1",
"mocha": "^8.3.0",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-uglify": "^6.0.4",
"spa-server": "^1.0.0",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"engines": {
"node": ">=14"
}
}