-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 889 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
{
"name": "taro-apollo",
"version": "1.2.5",
"description": "apollo for Taro",
"main": "build",
"repository": "[email protected]:kdong007/taro-apollo.git",
"homepage": "https://github.com/kdong007/taro-apollo",
"author": "Mars Dong <[email protected]>",
"keywords": [
"taro",
"apollo",
"graphql"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "babel src -d build",
"clean": "rm -rf build",
"prepublish": "yarn build",
"postpublish": "yarn clean"
},
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4"
}
}