forked from xiaoyao96/wxMiniStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "wxministore",
"version": "1.3.1",
"description": "小程序全局状态管理工具",
"main": "./lib/store.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoyao96/wxMiniStore"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "mocha --require babel-core/register ./test/diff.test.js"
},
"files": [
"lib"
],
"keywords": [
"store",
"wxstore",
"wxministore"
],
"author": "Leisure",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiaoyao96/wxMiniStore/issues"
},
"homepage": "https://github.com/xiaoyao96/wxMiniStore#readme",
"devDependencies": {
"@rollup/plugin-json": "^4.0.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"rollup": "^1.27.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3"
}
}