-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
32 lines (32 loc) · 1 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
{
"name": "miniprogram-network-life-cycle",
"version": "5.3.0-alpha.0",
"description": "miniprogram-network lifecycle",
"repository": {
"type": "git",
"url": "git+https://github.com/NewFuture/miniprogram-network.git"
},
"homepage": "https://miniprogram-network.newfuture.cc/life-cycle/",
"license": "Apache-2.0",
"author": "New Future",
"files": [
"dist/",
"src/",
"es/"
],
"main": "dist/index.js",
"module": "es/index.js",
"scripts": {
"build": "npm run build:es5 && npm run build:es6",
"build:es5": "tsc",
"build:es6": "tsc -m es6 --target es6 --outDir es",
"clean": "rimraf -rf es dist types ",
"lint": "tslint -p . -c ../tslint.json",
"lint:fix": "tslint --fix -p . -c ../tslint.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"miniprogram-cancel-token": "^5.1.2",
"miniprogram-network-utils": "^5.3.0-alpha.0"
}
}