-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "@minapp/core",
"version": "2.0.0",
"description": "minapp 微信小程序的核心框架",
"main": "system.js",
"types": "system.d.ts",
"scripts": {
"test": "echo 0",
"lint": "tslint src/**/*.ts",
"postpublish": "sync-taobao",
"bundle:pretty": "webpack --output-library-target commonjs system.js system.bundle.js",
"bundle:minify": "webpack -p --output-library-target commonjs system.js system.bundle.min.js",
"build": "tsc && npm run bundle:pretty && npm run bundle:minify",
"watch": "tsc -w"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Mora <[email protected]> (https://github.com/qiu8310)",
"bugs": "https://github.com/qiu8310/minapp/issues",
"homepage": "https://github.com/qiu8310/minapp/tree/master/packages/minapp-core",
"repository": {
"type": "git",
"url": "https://github.com/qiu8310/minapp/tree/master/packages/minapp-core"
},
"peerDependencies": {
"@minapp/wx": "*"
},
"devDependencies": {
"@minapp/wx": "^2.0.0",
"@types/fs-extra": "^5.0.0",
"fs-extra": "^5.0.0",
"mora-scripts": "^1.6.28",
"ts-lint": "^4.5.1",
"typescript": "^2.7.1",
"webpack": "^3.11.0"
},
"dependencies": {
"tslib": "^1.9.0"
}
}