forked from charleslo1/weapp-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.4 KB
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
{
"name": "weapp-cookie",
"version": "1.2.6",
"description": "一行代码让微信小程序支持 cookie,以保证基于 cookie 的服务器会话机制不会失效,与 web 端共用会话机制",
"main": "dist/weapp-cookie.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.2.1"
},
"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.14.0",
"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"
}
}