-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 940 Bytes
/
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
{
"name": "minii",
"version": "1.3.3",
"description": "state management for wechat mini app",
"main": "src/index.js",
"scripts": {
"lint-fix": "standard --fix --verbose | snazzy",
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint",
"test": "mocha ./test/*.test.js",
"build": "gulp"
},
"miniprogram": "dist",
"standard": {
"env": [
"mocha"
],
"globals": [
"wx"
]
},
"devDependencies": {
"chai": "^4.2.0",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-uglify-es": "^1.0.4",
"mocha": "^10.2.0",
"sinon": "^7.1.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"keywords": [
"miniapp",
"wechat",
"state management",
"wechat mini app"
],
"engines": {
"node": ">=10.0.0"
},
"author": "wwayne",
"repository": {
"type": "git",
"url": "https://github.com/wwayne/minii.git"
},
"license": "MIT"
}