-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"version": "1.0.0",
"description": "Fetch API polyfill for Wechat MiniProgram",
"keywords": [
"fetch",
"miniprogram",
"promise",
"request"
],
"homepage": "https://miniprogram-network.newfuture.cc/",
"bugs": {
"url": "https://github.com/NewFuture/miniprogram-network/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewFuture/miniprogram-network.git"
},
"license": "Apache-2.0",
"author": {
"name": "NewFuture",
"email": "npm@newfuture.cc",
"url": "https://newfuture.cc"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run build:ts && npm run lint:fix",
"build:ts": "lerna run build",
"clean": "lerna run clean",
"start": "npm run rm:module && lerna bootstrap && lerna run build",
"prepub": "npm run clean && npm run build:ts && npm run lint",
"pub": "lerna publish",
"rm:module": "lerna clean --yes",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"pretest": "lerna bootstrap --no-ci",
"test": "npm run lint && lerna run build"
},
"devDependencies": {
"lerna": "^3.22.1",
"rimraf": "^2.7.1",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.9.7"
}
}