-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.48 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
{
"name": "weapp-cookie",
"version": "1.4.6",
"description": "一行代码让微信小程序支持 cookie,以保证基于 cookie 的服务器会话机制不会失效,与 web 端共用会话机制",
"main": "dist/weapp-cookie.js",
"files": [
"assets",
"dist",
"src",
"test",
"index.js"
],
"scripts": {
"build": "gulp build",
"lint": "gulp lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/charleslo1/weapp-cookie.git"
},
"keywords": [
"wxapp",
"cookie"
],
"author": "Charles Lo",
"license": "ISC",
"dependencies": {
"set-cookie-parser": "^2.3.8"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-watch": "^4.3.11",
"gulp-webserver": "^0.9.1",
"mocha": "^5.2.0",
"rollup": "^0.49.3",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.4.0"
}
}