-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "@miniprogramjs/cache",
"version": "1.1.2",
"description": "一个适用于微信小程序的模块化缓存工具库",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "YuJinLei <[email protected]>",
"license": "ISC",
"repository": "https://github.com/YuJinLei/miniprogram-cache",
"keywords": [
"@miniprogramjs",
"@miniprogramjs-cache",
"@miniprogram",
"@miniprogram-cache",
"miniprogram",
"miniprogram-cache",
"mini",
"mini-cache",
"cache"
],
"directories": {
"lib": "lib"
},
"jest": {
"rootDir": "__test__",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__test__/.*|(\\.|/)test)test\\.ts?$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"scripts": {
"dev": "yarn && tsc -w",
"build": "rm -rf dist && yarn && tsc",
"test": "jest --verbose",
"publish": "npm publish --access public"
},
"files": [
"dist",
"package.json",
"CHANGELOG.md",
"README.md"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/wechat-miniprogram": "^3.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.1.3"
}
}