-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 897 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
{
"name": "taro-fetch",
"version": "1.0.3",
"description": "a fetch ponyfill for tarojs",
"main": "./lib/bundle.js",
"module": "./src/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "rollup -c",
"prepublish": "npm run clean && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cuijiemmx/taro-fetch.git"
},
"keywords": [
"boilerplate",
"npm",
"module",
"node",
"javascript"
],
"author": "cuijiemmx <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cuijiemmx/taro-fetch/issues"
},
"homepage": "https://github.com/cuijiemmx/taro-fetch#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"rollup-plugin-babel": "^4.0.3"
}
}