-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.73 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": "lite-jquery",
"version": "1.0.0-alpha",
"description": "A jquery like library",
"main": "dist/lite.cjs.js",
"scripts": {
"start": "npm run example",
"example": "cross-env NODE_ENV=production node ./example/build/app.js",
"build:example": "webpack-cli --config ./example/build/webpack.dev.js",
"prod": "cross-env NODE_ENV=production node ./build/prod.js",
"test": "cross-env NODE_ENV=development node ./test/build/app.js",
"build:test": "webpack-cli --config ./test/build/webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shijinyu/lite-jquery.git"
},
"keywords": [
"jquery",
"zeptojs",
"dom",
"jqlite"
],
"author": "shijinyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shijinyu/lite-jquery/issues"
},
"homepage": "https://github.com/shijinyu/lite-jquery#readme",
"engines": {
"node": ">=8.9.0",
"npm": ">=5.0.0"
},
"dependencies": {
"dayjs": "^1.7.5",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"babel-plugin-import": "^1.8.0",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.1.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-static": "^4.0.3",
"mini-css-extract-plugin": "^0.4.2",
"prettier": "^1.14.3",
"qunit": "^2.6.2",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^5.0.2",
"rollup-plugin-uglify-es": "0.0.1",
"style-loader": "^0.23.0",
"terser": "^3.10.8",
"url-loader": "^1.1.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-koa-middleware": "^1.0.2",
"webpack-hot-koa-middleware": "^1.0.1",
"webpack-merge": "^4.1.4"
}
}