├── LICENSE ├── README.md ├── nodejs ├── .babelrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── package.json ├── src │ ├── graphql │ │ ├── schema.js │ │ └── types │ │ │ ├── createPersonResult.js │ │ │ ├── person.js │ │ │ ├── time.js │ │ │ └── timeInput.js │ └── index.js └── yarn.lock ├── python ├── .gitignore ├── README.md ├── api_server │ ├── __init__.py │ ├── mutations │ │ └── create_person.py │ ├── schema.py │ └── types │ │ ├── person.py │ │ ├── time.py │ │ └── time_input.py ├── app.py └── requirements.txt └── v1 ├── .babelrc ├── README.md ├── package.json ├── src ├── config.js ├── graphql │ ├── module │ │ ├── basic.js │ │ ├── dataLoader.js │ │ ├── interface.js │ │ ├── mutation.js │ │ ├── unionType.js │ │ └── variable.js │ └── schema.js ├── index.js └── serverUtil.js └── yarn.lock /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2017 Appier Inc. 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | GraphQL Cookbook 2 | ====== 3 | 4 | Code example for buidling a NodeJS / Python GraphQL server. 5 | 6 | * `nodejs/`: [Express](https://expressjs.com/) + [Apollo-Server](http://dev.apollodata.com/tools/apollo-server/) 7 | * `python/`: [Flask](http://flask.pocoo.org/) + [Flask-GraphQL](https://github.com/graphql-python/flask-graphql) 8 | * `v1/`: 2016 version of the example, using [Express](https://expressjs.com/) + [graphql-express](https://github.com/graphql/express-graphql), contains example for advanced syntax like fragments, interfaces and union types. -------------------------------------------------------------------------------- /nodejs/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "targets": { 5 | "node": "current" 6 | } 7 | }] 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /nodejs/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: 'babel-eslint', 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:import/errors', 6 | 'plugin:import/warnings', 7 | 'prettier', 8 | ], 9 | env: {node: true, es6: true, jest: true}, 10 | plugins: [ 11 | 'prettier', 12 | ], 13 | rules: { 14 | 'prettier/prettier': ['error', { 15 | trailingComma: 'es5', 16 | 'singleQuote': true, 17 | }], 18 | 'no-console': 'off', // just use console :P 19 | }, 20 | } 21 | -------------------------------------------------------------------------------- /nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | *.log 4 | .DS_Store -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- 1 | GraphQL Cookbook -- NodeJS example 2 | ====== 3 | 4 | ## Setup 5 | 6 | ``` 7 | $ git clone https://github.com/appier/graphql-cookbook.git 8 | $ cd graphql-cookbook/nodejs 9 | $ yarn # Or `npm install` if you don't have yarn 10 | ``` 11 | 12 | ## Running 13 | 14 | ``` 15 | $ yarn start 16 | ``` 17 | 18 | * GET `http://localhost:5000/graphql` will get graphiql interface 19 | * POST `http://localhost:5000/graphql` is the endpoint to server 20 | -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs-graphql-example", 3 | "version": "1.0.0", 4 | "description": "A GraphQL server example with Apollo Server", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "start": "babel-node src/index", 8 | "lint": "eslint src/" 9 | }, 10 | "author": "", 11 | "license": "MIT", 12 | "dependencies": { 13 | "apollo-server-express": "^1.0.5", 14 | "body-parser": "^1.17.2", 15 | "express": "^4.15.3" 16 | }, 17 | "devDependencies": { 18 | "babel": "^6.23.0", 19 | "babel-cli": "^6.24.1", 20 | "babel-eslint": "^7.2.3", 21 | "babel-preset-env": "^1.6.0", 22 | "eslint": "^4.4.0", 23 | "eslint-config-prettier": "^2.3.0", 24 | "eslint-plugin-import": "^2.7.0", 25 | "eslint-plugin-prettier": "^2.1.2", 26 | "graphql": "^0.10.5", 27 | "prettier": "^1.5.3" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /nodejs/src/graphql/schema.js: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema, GraphQLObjectType, GraphQLString } from 'graphql'; 2 | import Time from './types/time'; 3 | import TimeInput from './types/timeInput'; 4 | import CreatePersonResult from './types/createPersonResult'; 5 | 6 | export default new GraphQLSchema({ 7 | query: new GraphQLObjectType({ 8 | name: 'Query', 9 | fields: { 10 | serverTime: { 11 | type: GraphQLString, 12 | resolve() { 13 | return new Date().toLocaleString(); 14 | }, 15 | }, 16 | serverTimeObj: { 17 | type: Time, 18 | resolve() { 19 | return new Date(); 20 | }, 21 | }, 22 | serverTimeWithInput: { 23 | type: GraphQLString, 24 | args: { 25 | timezone: { 26 | type: GraphQLString, 27 | description: 'Timezone name (Area/City)', 28 | }, 29 | offset: { 30 | type: TimeInput, 31 | description: 32 | 'Offsets the returned time with given hour, minute and second.', 33 | }, 34 | }, 35 | resolve(obj, { timezone = 'Asia/Taipei', offset = {} }) { 36 | const offsetValue = getOffsetMillisecond(offset); 37 | const date = new Date(Date.now() + offsetValue).toLocaleString({ 38 | timeZone: timezone, 39 | }); 40 | return date; 41 | }, 42 | }, 43 | }, 44 | }), 45 | 46 | mutation: new GraphQLObjectType({ 47 | name: 'Mutation', 48 | fields: { 49 | createPerson: { 50 | type: CreatePersonResult, 51 | args: { name: { type: GraphQLString } }, 52 | resolve(obj, args) { 53 | const person = { name: args.name }; 54 | // Should do something that persists 55 | // the person 56 | return { 57 | ok: true, 58 | person, 59 | }; 60 | }, 61 | }, 62 | }, 63 | }), 64 | }); 65 | 66 | function getOffsetMillisecond({ hour = 0, minute = 0, second = 0 }) { 67 | return 1000 * (hour * 3600 + minute * 60 + second); 68 | } 69 | -------------------------------------------------------------------------------- /nodejs/src/graphql/types/createPersonResult.js: -------------------------------------------------------------------------------- 1 | import { GraphQLObjectType, GraphQLBoolean } from 'graphql'; 2 | import Person from './person'; 3 | 4 | export default new GraphQLObjectType({ 5 | name: 'CreatePersonResult', 6 | fields: { 7 | ok: { type: GraphQLBoolean }, 8 | person: { type: Person }, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /nodejs/src/graphql/types/person.js: -------------------------------------------------------------------------------- 1 | import { GraphQLObjectType, GraphQLString, GraphQLInt } from 'graphql'; 2 | 3 | export default new GraphQLObjectType({ 4 | name: 'Person', 5 | fields: { 6 | name: { type: GraphQLString }, 7 | age: { type: GraphQLInt }, 8 | }, 9 | }); 10 | -------------------------------------------------------------------------------- /nodejs/src/graphql/types/time.js: -------------------------------------------------------------------------------- 1 | import { GraphQLObjectType, GraphQLInt } from 'graphql'; 2 | 3 | export default new GraphQLObjectType({ 4 | name: 'Time', 5 | fields: { 6 | hour: { 7 | type: GraphQLInt, 8 | resolve(obj) { 9 | return obj.getHours(); 10 | }, 11 | }, 12 | minute: { 13 | type: GraphQLInt, 14 | resolve(obj) { 15 | return obj.getMinutes(); 16 | }, 17 | }, 18 | second: { 19 | type: GraphQLInt, 20 | resolve(obj) { 21 | return obj.getSeconds(); 22 | }, 23 | }, 24 | }, 25 | }); 26 | -------------------------------------------------------------------------------- /nodejs/src/graphql/types/timeInput.js: -------------------------------------------------------------------------------- 1 | import { GraphQLInputObjectType, GraphQLInt } from 'graphql'; 2 | 3 | export default new GraphQLInputObjectType({ 4 | name: 'TimeInput', 5 | fields: { 6 | hour: { type: GraphQLInt }, 7 | minute: { type: GraphQLInt }, 8 | second: { type: GraphQLInt }, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /nodejs/src/index.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import bodyParser from 'body-parser'; 3 | import { graphqlExpress, graphiqlExpress } from 'apollo-server-express'; 4 | import schema from './graphql/schema'; 5 | 6 | const PORT = process.env.PORT || 5000; 7 | 8 | const app = express(); 9 | 10 | app.post('/graphql', bodyParser.json(), graphqlExpress({ schema })); 11 | app.get('/graphql', graphiqlExpress({ endpointURL: '/graphql' })); 12 | 13 | app.listen(PORT, () => { 14 | console.log(`Server ready at http://localhost:${PORT}`); 15 | }); 16 | -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- 1 | GraphQL Cookbook -- Python example 2 | ====== 3 | 4 | ## Setup 5 | 6 | ``` 7 | $ git clone https://github.com/appier/graphql-cookbook.git 8 | $ cd graphql-cookbook/python 9 | $ virtualenv -p python3 venv 10 | (venv) $ pip install -r requirements.txt 11 | ``` 12 | 13 | ## Running 14 | 15 | ``` 16 | (venv) $ FLASK_APP=app.py flask run 17 | ``` 18 | 19 | * GET `http://localhost:5000/graphql` will get graphiql interface 20 | * POST `http://localhost:5000/graphql` is the endpoint to server 21 | -------------------------------------------------------------------------------- /python/api_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appier/graphql-cookbook/3adb7dc25f3282ea86b9bb1130c8bd73d668f5ae/python/api_server/__init__.py -------------------------------------------------------------------------------- /python/api_server/mutations/create_person.py: -------------------------------------------------------------------------------- 1 | import graphene 2 | from ..types.person import Person 3 | 4 | class CreatePerson(graphene.Mutation): 5 | class Input: 6 | name = graphene.Argument(graphene.String) 7 | 8 | ok = graphene.Field(graphene.Boolean) 9 | person = graphene.Field(lambda: Person) 10 | 11 | @staticmethod 12 | def mutate(root, args, context, info): 13 | #: Should do something that persists 14 | #: the new Person here 15 | person = Person(name=args.get('name')) 16 | ok = True 17 | return CreatePerson(person=person, ok=ok) 18 | -------------------------------------------------------------------------------- /python/api_server/schema.py: -------------------------------------------------------------------------------- 1 | import graphene 2 | from datetime import datetime, timezone, timedelta 3 | from .types.time import Time 4 | from .types.time_input import TimeInput 5 | from .mutations.create_person import CreatePerson 6 | 7 | class Query(graphene.ObjectType): 8 | server_time = graphene.Field(graphene.String) 9 | server_time_obj = graphene.Field(Time) 10 | server_time_with_input = graphene.Field( 11 | graphene.String, 12 | timezone=graphene.Argument( 13 | graphene.Int, 14 | default_value=8, 15 | description="UTC+N, N=-24~24." 16 | ), 17 | offset=graphene.Argument( 18 | TimeInput, 19 | default_value=dict(), 20 | description="Offsets the returned time with given hour, minute and second." 21 | ) 22 | ) 23 | 24 | def resolve_server_time(obj, args, context, info): 25 | return str(datetime.now()) 26 | 27 | def resolve_server_time_obj(obj, args, context, info): 28 | return datetime.now() 29 | 30 | def resolve_server_time_with_input(obj, args, context, info): 31 | tz = timezone(timedelta(hours=args['timezone'])) 32 | delta = timedelta( 33 | hours=args['offset'].get('hour', 0), 34 | minutes=args['offset'].get('minute', 0), 35 | seconds=args['offset'].get('second', 0) 36 | ) 37 | return str(datetime.now(tz) + delta) 38 | 39 | class Mutation(graphene.ObjectType): 40 | create_person = CreatePerson.Field() 41 | 42 | schema = graphene.Schema(query=Query, mutation=Mutation) 43 | -------------------------------------------------------------------------------- /python/api_server/types/person.py: -------------------------------------------------------------------------------- 1 | import graphene 2 | 3 | class Person(graphene.ObjectType): 4 | name = graphene.String() 5 | age = graphene.Int() 6 | -------------------------------------------------------------------------------- /python/api_server/types/time.py: -------------------------------------------------------------------------------- 1 | import graphene 2 | 3 | class Time(graphene.ObjectType): 4 | hour = graphene.Int() 5 | minute = graphene.Int() 6 | second = graphene.Int() 7 | 8 | #: The below are trivial resolvers, can be omitted 9 | #: 10 | def resolve_hour(obj, args, context, info): 11 | return obj.hour 12 | 13 | def resolve_minute(obj, args, context, info): 14 | return obj.minute 15 | 16 | def resolve_second(obj, args, context, info): 17 | return obj.second 18 | 19 | -------------------------------------------------------------------------------- /python/api_server/types/time_input.py: -------------------------------------------------------------------------------- 1 | import graphene 2 | 3 | class TimeInput(graphene.InputObjectType): 4 | hour = graphene.Int() 5 | minute = graphene.Int() 6 | second = graphene.Int() 7 | -------------------------------------------------------------------------------- /python/app.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | from api_server.schema import schema 3 | from flask_graphql import GraphQLView 4 | 5 | app = Flask(__name__) 6 | app.add_url_rule('/graphql', view_func=GraphQLView.as_view('graphql', schema=schema, graphiql=True)) 7 | -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- 1 | click==6.7 2 | Flask==0.12.2 3 | Flask-GraphQL==1.4.1 4 | graphene==1.4.1 5 | graphql-core==1.1 6 | graphql-relay==0.4.5 7 | itsdangerous==0.24 8 | Jinja2==2.9.6 9 | MarkupSafe==1.0 10 | promise==2.0.2 11 | six==1.10.0 12 | typing==3.6.1 13 | Werkzeug==0.12.2 14 | -------------------------------------------------------------------------------- /v1/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015-node6", "stage-0"], 3 | "plugins": [ 4 | "babel-plugin-transform-es2015-destructuring", 5 | "transform-object-rest-spread" 6 | ] 7 | } -------------------------------------------------------------------------------- /v1/README.md: -------------------------------------------------------------------------------- 1 | # GraphQL Cookbook 2 | 3 | Code example for building a graphql server through graphql-express. 4 | 5 | 6 | ### Dependencies 7 | 8 | ```sh 9 | npm install 10 | ``` 11 | 12 | ### Run Application 13 | 14 | ```sh 15 | npm start 16 | ``` 17 | 18 | And open browser to http://localhost:18885/graphql . 19 | 20 | 21 | ### Code Structure 22 | 23 | src/index.js, config.js, and serverUtil.js demostrate how to setup a graphql server which allow CROS ajax. The server will use the schema in src/graphql/schema.js. 24 | 25 | The code in src/graphql/module are organized by the following section. 26 | 27 | * basic.js : Type definition and basic resolve implementation. 28 | * variable.js : Use variable to Simplify Query and define input type. 29 | * interface.js : Build an interface for fragment query. 30 | * unionType.js : Define union type for dynamic data schema. 31 | * mutation.js : Implement mutation. 32 | * dataLoader.js : Demonstrate how to use dataload to improve request performance. 33 | 34 | 35 | ### Type definition and basic resolve implementation 36 | 37 | - The type, query definiton, and dummy data is located at src/graphql/module/basic.js 38 | - In this section, we implement a common jointed data structure, and use resolve to build an nested an query for that data structure. 39 | 40 | Example Query: 41 | ```js 42 | query { 43 | listCampaign { 44 | list { 45 | campaignId 46 | } 47 | } 48 | queryCampaign(campaignId: "campaignId1") { 49 | campaignId 50 | adSet { 51 | adSetId 52 | creative { 53 | creativeId 54 | } 55 | } 56 | } 57 | } 58 | ``` 59 | 60 | 61 | ### Use variable to Simplify Query and Define input type 62 | 63 | - The type, query definiton, and dummy data is located at src/graphql/module/variable.js 64 | - In this section, we define an input type to check whether query has an right parameter data structure or not. Thanks for this type definition, we can also abstract those query param to variable, and make your query more elegant. 65 | 66 | Example Query: 67 | ```js 68 | query { 69 | getStatistic(list: [1, 2, 3]){ 70 | min 71 | max 72 | sum 73 | } 74 | getProduct(input: {x: 3, y: 5}){ 75 | result 76 | } 77 | } 78 | ``` 79 | 80 | Example Query (use variable): 81 | ```js 82 | query ($array: [Float], $input: MultiplierInputType) { 83 | getStatistic(list: $array) { 84 | min 85 | max 86 | sum 87 | } 88 | getProduct(input: $input) { 89 | result 90 | } 91 | } 92 | ``` 93 | 94 | Variable: 95 | ```js 96 | { 97 | "array": [1,2,3], 98 | "input": {"x": 3, "y": 5} 99 | } 100 | ``` 101 | 102 | ### Build an interface for fragment query 103 | 104 | - The type, query definiton, and dummy data is located at src/graphql/module/interface.js 105 | - In this section, we define an interface to allow different type to share the same fields. With help of interface definition, we are able to use fragment to simplify our queries involving different type with same fields. 106 | 107 | Example Query (Fragment through type definition): 108 | ```js 109 | query { 110 | perofrmance1: queryAppPerformance(appId: "appId1") { 111 | appId 112 | ...performance 113 | } 114 | performance2: queryAppPerformance(appId: "appId2") { 115 | appId 116 | ...performance 117 | } 118 | } 119 | fragment performance on AppPeroformanceType { 120 | cost 121 | action 122 | click 123 | impression 124 | } 125 | ``` 126 | 127 | Example Query (Fragment through interface definition): 128 | ```js 129 | query { 130 | queryAppPerformance(appId: "appId1") { 131 | appId 132 | ...performance 133 | } 134 | queryCreativePerformance(creativeId: "creativeId1") { 135 | creativeId 136 | ...performance 137 | } 138 | } 139 | fragment performance on PerformanceInterface { 140 | cost 141 | action 142 | click 143 | impression 144 | } 145 | ``` 146 | 147 | ### Define union type for dynamic data schema 148 | 149 | - The type, query definiton, and dummy data is located at src/graphql/module/unionType.js 150 | - In this section, we define serveral union type for querying data with dynamic structure. Union type and interface is just like the two sides of coin, and we usually choose the one which can describe our data schema best. 151 | 152 | ```js 153 | query { 154 | listCreative { 155 | ... on TextType { 156 | creativeId 157 | type 158 | text 159 | } 160 | ... on BannerType { 161 | creativeId 162 | type 163 | width 164 | height 165 | url 166 | } 167 | ... on VideoType { 168 | creativeId 169 | type 170 | file 171 | } 172 | } 173 | } 174 | ``` 175 | 176 | 177 | ### Implement mutation 178 | 179 | - The type, query definiton, and dummy data is located at src/graphql/module/mutation.js 180 | - In this section, we implement simple mutation for creating and updating our data. 181 | 182 | ```js 183 | query listCompany{ 184 | listCompany{ 185 | companyId, 186 | name 187 | } 188 | } 189 | 190 | mutation createCompany { 191 | createCompany(name: "foobar") { 192 | companyId 193 | name 194 | } 195 | } 196 | 197 | mutation updateCompany { 198 | updateCompany(companyId: "companyId1", name: "appier2") { 199 | companyId 200 | name 201 | } 202 | } 203 | ``` 204 | 205 | ### DataLoader 206 | 207 | When you request the nested data which used before, resolve function will still hit DB to get data everytime. This will cause lots of unnecessary burden to DB. With dataload, it will cache result in top resolve function, and avoid to hit DB in children resolve. 208 | 209 | ```js 210 | query { 211 | queryUser(userId: "userId1") { 212 | userId 213 | friends { 214 | userId 215 | friends { 216 | userId 217 | } 218 | } 219 | } 220 | } 221 | 222 | query { 223 | queryUserWithDataLoader(userId: "userId1") { 224 | userId 225 | friends { 226 | userId 227 | friends { 228 | userId 229 | } 230 | } 231 | } 232 | } 233 | 234 | ## License 235 | 236 | MIT Licensed. Copyright (c) Appier Inc. 2017. -------------------------------------------------------------------------------- /v1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-cookbook", 3 | "version": "0.1.0", 4 | "description": "Learning create a graphql server by example code.", 5 | "author": "CY Li", 6 | "scripts": { 7 | "start": "nodemon src/index.js --exec babel-node --presets stage-0", 8 | "build": "babel src -d build" 9 | }, 10 | "dependencies": { 11 | "body-parser": "^1.15.0", 12 | "dataloader": "^1.2.0", 13 | "express": "^4.13.4", 14 | "express-graphql": "^0.6.1", 15 | "express-session": "^1.13.0", 16 | "graphql": "^0.8.2", 17 | "http-status": "^0.2.2", 18 | "immutable": "^3.8.1" 19 | }, 20 | "devDependencies": { 21 | "babel-cli": "^6.7.7", 22 | "babel-preset-es2015-node4": "^2.1.0", 23 | "babel-preset-stage-0": "^6.5.0", 24 | "nodemon": "^1.9.1" 25 | }, 26 | "engines": { 27 | "node": ">= 6.1.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /v1/src/config.js: -------------------------------------------------------------------------------- 1 | import {config} from '../package.json' 2 | 3 | const defaultConfig = { 4 | server:{ 5 | hostname: '127.0.0.1', 6 | port: 18885, 7 | }, 8 | }; 9 | 10 | module.exports = defaultConfig 11 | -------------------------------------------------------------------------------- /v1/src/graphql/module/basic.js: -------------------------------------------------------------------------------- 1 | import { 2 | graphql, 3 | GraphQLFloat, 4 | GraphQLInt, 5 | GraphQLList, 6 | GraphQLNonNull, 7 | GraphQLObjectType, 8 | GraphQLString, 9 | } from 'graphql'; 10 | 11 | 12 | // Dummy Data 13 | const campaignData = [ 14 | { 15 | campaignId: 'campaignId1', 16 | name: 'Campaign 1', 17 | adSet: ['adSetId1', 'adSetId2'], 18 | }, 19 | { 20 | campaignId: 'campaignId2', 21 | name: 'Campaign 2', 22 | adSet: ['adSetId3', 'adSetId4'], 23 | }, 24 | ]; 25 | 26 | const adSetData = [ 27 | { 28 | adSetId: 'adSetId1', 29 | name: 'Ad Group 1', 30 | creative: ['creativeId1', 'creativeId2'], 31 | }, 32 | { 33 | adSetId: 'adSetId2', 34 | name: 'Ad Group 2', 35 | creative: [], 36 | }, 37 | { 38 | adSetId: 'adSetId3', 39 | name: 'Ad Group 3', 40 | creative: ['creativeId3'], 41 | }, 42 | { 43 | adSetId: 'adSetId4', 44 | name: 'Ad Group 4', 45 | creative: [], 46 | }, 47 | ]; 48 | 49 | const creativeData = [ 50 | { 51 | creativeId: 'creativeId1', 52 | url: 'url1', 53 | }, 54 | { 55 | creativeId: 'creativeId2', 56 | url: 'url2', 57 | }, 58 | { 59 | creativeId: 'creativeId3', 60 | url: 'url3', 61 | }, 62 | ]; 63 | 64 | 65 | // Type Definition 66 | const CreativeType = new GraphQLObjectType({ 67 | name: 'CreativeType', 68 | fields: { 69 | creativeId: { type: GraphQLString }, 70 | url: { type: GraphQLString }, 71 | }, 72 | }); 73 | 74 | const AdSetType = new GraphQLObjectType({ 75 | name: 'AdSetType', 76 | fields: { 77 | adSetId: { type: GraphQLString }, 78 | name: { type: GraphQLString }, 79 | creative: { 80 | type: new GraphQLList(CreativeType), 81 | resolve: (adSet) => { 82 | return creativeData.filter(d => adSet.creative.indexOf(d.creativeId) >= 0 ); 83 | } 84 | } 85 | }, 86 | }); 87 | 88 | const CampaignType = new GraphQLObjectType({ 89 | name: 'CampaignType', 90 | fields: { 91 | campaignId: { type: GraphQLString }, 92 | name: { type: GraphQLString }, 93 | adSet: { 94 | type: new GraphQLList(AdSetType), 95 | resolve: (campaign) => { 96 | return adSetData.filter(d => campaign.adSet.indexOf(d.adSetId) >= 0 ); 97 | } 98 | } 99 | }, 100 | }); 101 | 102 | const CampaignListType = new GraphQLObjectType({ 103 | name: 'CampaignListType', 104 | fields: { 105 | list: { 106 | type: new GraphQLList(CampaignType), 107 | }, 108 | }, 109 | }); 110 | 111 | // Query Definition 112 | export const listCampaign = { 113 | type: CampaignListType, 114 | args: { 115 | }, 116 | resolve: () => { 117 | return { 118 | list: campaignData 119 | }; 120 | }, 121 | } 122 | 123 | export const queryCampaign = { 124 | type: CampaignType, 125 | args: { 126 | campaignId: { type: new GraphQLNonNull(GraphQLString) }, 127 | }, 128 | resolve: (_, {campaignId}) => { 129 | return campaignData.filter(d=> d.campaignId === campaignId)[0]; 130 | }, 131 | } -------------------------------------------------------------------------------- /v1/src/graphql/module/dataLoader.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLList, 3 | GraphQLNonNull, 4 | GraphQLObjectType, 5 | GraphQLString, 6 | } from 'graphql'; 7 | 8 | import DataLoader from 'dataloader' 9 | 10 | 11 | // Dummy Data 12 | const userData = [ 13 | { 14 | userId: 'userId1', 15 | friends: ['userId3', 'userId2', 'userId4', 'userId6'], 16 | }, 17 | { 18 | userId: 'userId2', 19 | friends: ['userId1', 'userId3', 'userId3', 'userId4','userId5'], 20 | }, 21 | { 22 | userId: 'userId3', 23 | friends: ['userId1', 'userId2', 'userId6'], 24 | }, 25 | { 26 | userId: 'userId4', 27 | friends: ['userId1', 'userId2', 'userId5'], 28 | }, 29 | { 30 | userId: 'userId5', 31 | friends: ['userId2', 'userId4'], 32 | }, 33 | { 34 | userId: 'userId6', 35 | friends: ['userId1', 'userId6'], 36 | }, 37 | ]; 38 | 39 | const dbEmulator = (userId) => { 40 | console.log('DB load user: '+ userId); 41 | return userData.filter(d=> d.userId === userId)[0]; 42 | } 43 | 44 | // Type Definition 45 | const PersonType = new GraphQLObjectType({ 46 | name: 'PersonType', 47 | fields: () => ({ 48 | userId: { type: GraphQLString }, 49 | friends: { 50 | type: new GraphQLList(PersonType), 51 | resolve: (person) => { 52 | return person.friends.map(dbEmulator) 53 | } 54 | }, 55 | }), 56 | }); 57 | 58 | const PersonTypeWithDataLoader = new GraphQLObjectType({ 59 | name: 'PersonTypeWithDataLoader', 60 | fields: () => ({ 61 | userId: { type: GraphQLString }, 62 | friends: { 63 | type: new GraphQLList(PersonTypeWithDataLoader), 64 | resolve: async (person, args, context, ast) => { 65 | return await context.personLoader.loadMany(person.friends) 66 | } 67 | }, 68 | }), 69 | }); 70 | 71 | export const queryUser = { 72 | type: PersonType, 73 | args: { 74 | userId: { type: new GraphQLNonNull(GraphQLString) }, 75 | }, 76 | resolve: (context, {userId}) => { 77 | return dbEmulator(userId); 78 | }, 79 | } 80 | 81 | export const queryUserWithDataLoader = { 82 | type: PersonTypeWithDataLoader, 83 | args: { 84 | userId: { type: new GraphQLNonNull(GraphQLString) }, 85 | }, 86 | resolve: ({cfg}, {userId}, context) => { 87 | context.personLoader = new DataLoader(async (userIds) => { 88 | console.log('batch in dataloader', userIds); 89 | return userIds.map(dbEmulator) 90 | }); 91 | return dbEmulator(userId); 92 | }, 93 | } 94 | 95 | 96 | -------------------------------------------------------------------------------- /v1/src/graphql/module/interface.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLFloat, 3 | GraphQLInt, 4 | GraphQLList, 5 | GraphQLNonNull, 6 | GraphQLObjectType, 7 | GraphQLString, 8 | GraphQLInterfaceType, 9 | } from 'graphql'; 10 | 11 | 12 | // Dummy Data 13 | const appPerformanceData = [ 14 | { 15 | appId: 'appId1', 16 | cost: 10, 17 | action: 5, 18 | click: 12, 19 | impression: 200, 20 | }, 21 | { 22 | appId: 'appId2', 23 | cost: 20, 24 | action: 6, 25 | click: 14, 26 | impression: 400, 27 | }, 28 | ]; 29 | 30 | const creativePerformanceData = [ 31 | { 32 | creativeId: 'creativeId1', 33 | cost: 1, 34 | action: 2, 35 | click: 3, 36 | impression: 40, 37 | }, 38 | { 39 | creativeId: 'creativeId2', 40 | cost: 2, 41 | action: 3, 42 | click: 4, 43 | impression: 500, 44 | }, 45 | ]; 46 | 47 | // Interface Definition 48 | 49 | const PerformanceInterface = new GraphQLInterfaceType({ 50 | name: 'PerformanceInterface', 51 | fields: { 52 | cost: { type: GraphQLFloat }, 53 | action: { type: GraphQLInt }, 54 | click: { type: GraphQLInt }, 55 | impression: { type: GraphQLInt }, 56 | } 57 | }); 58 | 59 | // Type Definition 60 | 61 | const AppPeroformanceType = new GraphQLObjectType({ 62 | name: 'AppPeroformanceType', 63 | interfaces: [PerformanceInterface], 64 | fields: { 65 | appId: { type: GraphQLString }, 66 | cost: { type: GraphQLFloat }, 67 | action: { type: GraphQLInt }, 68 | click: { type: GraphQLInt }, 69 | impression: { type: GraphQLInt }, 70 | }, 71 | isTypeOf: (value) => { 72 | return value.appId; 73 | } 74 | }); 75 | 76 | const CreativePeroformanceType = new GraphQLObjectType({ 77 | name: 'CreativePeroformanceType', 78 | interfaces: [PerformanceInterface], 79 | fields: { 80 | creativeId: { type: GraphQLString }, 81 | cost: { type: GraphQLFloat }, 82 | action: { type: GraphQLInt }, 83 | click: { type: GraphQLInt }, 84 | impression: { type: GraphQLInt }, 85 | }, 86 | isTypeOf: (value) => { 87 | return value.creativeId; 88 | } 89 | }); 90 | 91 | 92 | // Query Definition 93 | 94 | export const queryAppPerformance = { 95 | type: AppPeroformanceType, 96 | args: { 97 | appId: { type: new GraphQLNonNull(GraphQLString) }, 98 | }, 99 | resolve: (_, {appId}) => { 100 | return appPerformanceData.filter(d=> d.appId === appId)[0]; 101 | }, 102 | } 103 | 104 | export const queryCreativePerformance = { 105 | type: CreativePeroformanceType, 106 | args: { 107 | creativeId: { type: new GraphQLNonNull(GraphQLString) }, 108 | }, 109 | resolve: (_, {creativeId}) => { 110 | return creativePerformanceData.filter(d=> d.creativeId === creativeId)[0]; 111 | }, 112 | } -------------------------------------------------------------------------------- /v1/src/graphql/module/mutation.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLList, 3 | GraphQLNonNull, 4 | GraphQLObjectType, 5 | GraphQLString, 6 | } from 'graphql'; 7 | 8 | 9 | // Dummy Data 10 | let companyData = [ 11 | { 12 | companyId: 'companyId1', 13 | name: 'Appier', 14 | }, 15 | ]; 16 | 17 | 18 | // Type Definition 19 | const CompanyType = new GraphQLObjectType({ 20 | name: 'CompanyType', 21 | fields: { 22 | companyId: { type: GraphQLString }, 23 | name: { type: GraphQLString }, 24 | }, 25 | }); 26 | 27 | // Query Definition 28 | 29 | export const listCompany = { 30 | type: new GraphQLList(CompanyType), 31 | args: { 32 | }, 33 | resolve: () => { 34 | return companyData; 35 | }, 36 | } 37 | 38 | export const createCompany = { 39 | type: CompanyType, 40 | args: { 41 | name: {type: new GraphQLNonNull(GraphQLString)}, 42 | }, 43 | resolve: (_, {name}) => { 44 | const newCompany = { 45 | companyId: `companyId${companyData.length+1}`, 46 | name, 47 | } 48 | companyData.push(newCompany); 49 | return newCompany; 50 | } 51 | }; 52 | 53 | export const updateCompany = { 54 | type: CompanyType, 55 | args: { 56 | companyId: {type: new GraphQLNonNull(GraphQLString)}, 57 | name: {type: new GraphQLNonNull(GraphQLString)}, 58 | }, 59 | resolve: (_, {companyId, name}) => { 60 | const targetCompany = companyData.filter(d=>d.companyId === companyId)[0]; 61 | if(targetCompany){ 62 | targetCompany.name = name; 63 | return targetCompany; 64 | } 65 | return null; 66 | } 67 | }; -------------------------------------------------------------------------------- /v1/src/graphql/module/unionType.js: -------------------------------------------------------------------------------- 1 | import { 2 | graphql, 3 | GraphQLFloat, 4 | GraphQLInt, 5 | GraphQLList, 6 | GraphQLObjectType, 7 | GraphQLString, 8 | GraphQLUnionType, 9 | } from 'graphql'; 10 | 11 | 12 | // Dummy Data 13 | 14 | const creativeData = [ 15 | { 16 | creativeId: 'creativeId1', 17 | type: 'Text', 18 | text: 'Best Ad', 19 | }, 20 | { 21 | creativeId: 'creativeId2', 22 | type: 'Text', 23 | text: 'Call to Action', 24 | }, 25 | { 26 | creativeId: 'creativeId3', 27 | type: 'Banner', 28 | url: 'imgur.com/G6qJ75i', 29 | width: 160, 30 | height: 600, 31 | }, 32 | { 33 | creativeId: 'creativeId4', 34 | type: 'Banner', 35 | url: 'imgur.com/HaeJ8aN5', 36 | width: 300, 37 | height: 250, 38 | }, 39 | { 40 | creativeId: 'creativeId5', 41 | type: 'Video', 42 | file: 'somewhere.in.AWS', 43 | }, 44 | ]; 45 | 46 | 47 | // Type Definition 48 | 49 | const TextType = new GraphQLObjectType({ 50 | name: 'TextType', 51 | fields: { 52 | creativeId: { type: GraphQLString }, 53 | type: { type: GraphQLString }, 54 | text: { type: GraphQLString }, 55 | }, 56 | }); 57 | 58 | const BannerType = new GraphQLObjectType({ 59 | name: 'BannerType', 60 | fields: { 61 | creativeId: { type: GraphQLString }, 62 | type: { type: GraphQLString }, 63 | url: { type: GraphQLString }, 64 | width: { type: GraphQLInt }, 65 | height: { type: GraphQLInt }, 66 | }, 67 | }); 68 | 69 | const VideoType = new GraphQLObjectType({ 70 | name: 'VideoType', 71 | fields: { 72 | creativeId: { type: GraphQLString }, 73 | type: { type: GraphQLString }, 74 | file: { type: GraphQLString }, 75 | }, 76 | }); 77 | 78 | const CreativeItemType = new GraphQLUnionType({ 79 | name: 'CreativeItemType', 80 | types: [ TextType, BannerType, VideoType ], 81 | resolveType(value) { 82 | if(value.type === 'Text'){ 83 | return TextType; 84 | } 85 | else if(value.type === 'Banner'){ 86 | return BannerType; 87 | } 88 | if(value.type === 'Video'){ 89 | return VideoType; 90 | } 91 | } 92 | }); 93 | 94 | // Query Definition 95 | export const listCreative = { 96 | type: new GraphQLList(CreativeItemType), 97 | args: { 98 | }, 99 | resolve: () => { 100 | return creativeData; 101 | }, 102 | } -------------------------------------------------------------------------------- /v1/src/graphql/module/variable.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLFloat, 3 | GraphQLInt, 4 | GraphQLList, 5 | GraphQLObjectType, 6 | GraphQLInputObjectType, 7 | } from 'graphql'; 8 | 9 | const CalculatorType = new GraphQLObjectType({ 10 | name: 'CalculatorType', 11 | fields: { 12 | max: { type: GraphQLFloat }, 13 | min: { type: GraphQLFloat }, 14 | sum: { type: GraphQLFloat }, 15 | }, 16 | }); 17 | 18 | const ProductType = new GraphQLObjectType({ 19 | name: 'ProductType', 20 | fields: { 21 | result: { type: GraphQLFloat }, 22 | } 23 | }); 24 | 25 | const MultiplierInputType = new GraphQLInputObjectType({ 26 | name: 'MultiplierInputType', 27 | fields: { 28 | x: { type: GraphQLFloat, defaultValue: 0 }, 29 | y: { type: GraphQLFloat, defaultValue: 0 }, 30 | } 31 | }); 32 | 33 | 34 | export const getStatistic = { 35 | type: CalculatorType, 36 | args: { 37 | list: { type: new GraphQLList(GraphQLFloat) }, 38 | }, 39 | resolve: (_, {list}) => { 40 | const max = Math.max(...list); 41 | const min = Math.min(...list); 42 | const sum = list.reduce((acc, d)=> acc+d, 0); 43 | return { 44 | max, min, sum, 45 | } 46 | }, 47 | } 48 | 49 | export const getProduct = { 50 | type: ProductType, 51 | args: { 52 | input: { type: MultiplierInputType }, 53 | }, 54 | resolve: (_, {input}) => { 55 | return { 56 | result: input.x*input.y 57 | } 58 | }, 59 | } -------------------------------------------------------------------------------- /v1/src/graphql/schema.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLObjectType, 3 | GraphQLSchema, 4 | } from 'graphql'; 5 | 6 | import { 7 | listCampaign, 8 | queryCampaign, 9 | } from './module/basic'; 10 | 11 | import { 12 | getStatistic, 13 | getProduct, 14 | } from './module/variable'; 15 | 16 | import { 17 | queryAppPerformance, 18 | queryCreativePerformance, 19 | } from './module/interface'; 20 | 21 | import { 22 | listCreative 23 | } from './module/unionType'; 24 | 25 | import { 26 | listCompany, 27 | createCompany, 28 | updateCompany, 29 | } from './module/mutation'; 30 | 31 | 32 | export const schema = new GraphQLSchema({ 33 | query: new GraphQLObjectType({ 34 | name: 'RootQueryType', 35 | fields: { 36 | listCampaign, 37 | queryCampaign, 38 | getStatistic, 39 | getProduct, 40 | queryAppPerformance, 41 | queryCreativePerformance, 42 | listCreative, 43 | 44 | listCompany, 45 | }, 46 | }), 47 | mutation: new GraphQLObjectType({ 48 | name: 'RootMutationType', 49 | fields: { 50 | createCompany, 51 | updateCompany, 52 | } 53 | }), 54 | }); 55 | -------------------------------------------------------------------------------- /v1/src/index.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import config from './config'; 3 | import graphqlHTTP from 'express-graphql'; 4 | import { 5 | schema 6 | } from './graphql/schema'; 7 | 8 | import { 9 | setup, 10 | } from './serverUtil'; 11 | 12 | const main = () => { 13 | let app = setup(express(), {config}); 14 | 15 | app.use('/graphql', graphqlHTTP({ 16 | schema, 17 | rootValue: { 18 | config 19 | }, 20 | graphiql: true 21 | })); 22 | 23 | app.listen(config.server.port); 24 | }; 25 | 26 | main(); 27 | -------------------------------------------------------------------------------- /v1/src/serverUtil.js: -------------------------------------------------------------------------------- 1 | import bodyParser from 'body-parser'; 2 | 3 | export const setup = (app, {config}) => { 4 | //Allow cross domain ajax 5 | app.use('/*', setCrossDomainHeader); 6 | return app; 7 | }; 8 | 9 | const setCrossDomainHeader = (req, rsp, next) => { 10 | rsp.set({ 11 | 'Content-Type': 'application/json; charset=utf-8', 12 | 'Access-Control-Allow-Origin': `${req.headers.origin}`, 13 | 'Access-Control-Allow-Credentials': 'true', 14 | 'Access-Control-Allow-Headers': 'accept, content-type', 15 | 'Access-Control-Allow-Methods': 'GET,PUT,POST,DELETE', 16 | }); 17 | next(); 18 | }; 19 | -------------------------------------------------------------------------------- /v1/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://appier.us:4873/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | accepts@^1.3.0, accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://appier.us:4873/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://appier.us:4873/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://appier.us:4873/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.0" 26 | resolved "https://appier.us:4873/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 27 | dependencies: 28 | arrify "^1.0.0" 29 | micromatch "^2.1.5" 30 | 31 | aproba@^1.0.3: 32 | version "1.0.4" 33 | resolved "https://appier.us:4873/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.2" 37 | resolved "https://appier.us:4873/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.0 || ^1.1.13" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://appier.us:4873/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.0.1" 50 | resolved "https://appier.us:4873/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 51 | 52 | array-flatten@1.1.1: 53 | version "1.1.1" 54 | resolved "https://appier.us:4873/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 55 | 56 | array-unique@^0.2.1: 57 | version "0.2.1" 58 | resolved "https://appier.us:4873/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 59 | 60 | arrify@^1.0.0: 61 | version "1.0.1" 62 | resolved "https://appier.us:4873/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 63 | 64 | asn1@~0.2.3: 65 | version "0.2.3" 66 | resolved "https://appier.us:4873/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 67 | 68 | assert-plus@^0.2.0: 69 | version "0.2.0" 70 | resolved "https://appier.us:4873/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 71 | 72 | assert-plus@^1.0.0: 73 | version "1.0.0" 74 | resolved "https://appier.us:4873/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 75 | 76 | async-each@^1.0.0: 77 | version "1.0.1" 78 | resolved "https://appier.us:4873/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 79 | 80 | asynckit@^0.4.0: 81 | version "0.4.0" 82 | resolved "https://appier.us:4873/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 83 | 84 | aws-sign2@~0.6.0: 85 | version "0.6.0" 86 | resolved "https://appier.us:4873/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 87 | 88 | aws4@^1.2.1: 89 | version "1.5.0" 90 | resolved "https://appier.us:4873/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 91 | 92 | babel-cli@^6.7.7: 93 | version "6.22.2" 94 | resolved "https://appier.us:4873/babel-cli/-/babel-cli-6.22.2.tgz#3f814c8acf52759082b8fedd9627f938936ab559" 95 | dependencies: 96 | babel-core "^6.22.1" 97 | babel-polyfill "^6.22.0" 98 | babel-register "^6.22.0" 99 | babel-runtime "^6.22.0" 100 | commander "^2.8.1" 101 | convert-source-map "^1.1.0" 102 | fs-readdir-recursive "^1.0.0" 103 | glob "^7.0.0" 104 | lodash "^4.2.0" 105 | output-file-sync "^1.1.0" 106 | path-is-absolute "^1.0.0" 107 | slash "^1.0.0" 108 | source-map "^0.5.0" 109 | v8flags "^2.0.10" 110 | optionalDependencies: 111 | chokidar "^1.6.1" 112 | 113 | babel-code-frame@^6.22.0: 114 | version "6.22.0" 115 | resolved "https://appier.us:4873/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 116 | dependencies: 117 | chalk "^1.1.0" 118 | esutils "^2.0.2" 119 | js-tokens "^3.0.0" 120 | 121 | babel-core@^6.22.0, babel-core@^6.22.1: 122 | version "6.22.1" 123 | resolved "https://appier.us:4873/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 124 | dependencies: 125 | babel-code-frame "^6.22.0" 126 | babel-generator "^6.22.0" 127 | babel-helpers "^6.22.0" 128 | babel-messages "^6.22.0" 129 | babel-register "^6.22.0" 130 | babel-runtime "^6.22.0" 131 | babel-template "^6.22.0" 132 | babel-traverse "^6.22.1" 133 | babel-types "^6.22.0" 134 | babylon "^6.11.0" 135 | convert-source-map "^1.1.0" 136 | debug "^2.1.1" 137 | json5 "^0.5.0" 138 | lodash "^4.2.0" 139 | minimatch "^3.0.2" 140 | path-is-absolute "^1.0.0" 141 | private "^0.1.6" 142 | slash "^1.0.0" 143 | source-map "^0.5.0" 144 | 145 | babel-generator@^6.22.0: 146 | version "6.22.0" 147 | resolved "https://appier.us:4873/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 148 | dependencies: 149 | babel-messages "^6.22.0" 150 | babel-runtime "^6.22.0" 151 | babel-types "^6.22.0" 152 | detect-indent "^4.0.0" 153 | jsesc "^1.3.0" 154 | lodash "^4.2.0" 155 | source-map "^0.5.0" 156 | 157 | babel-helper-bindify-decorators@^6.22.0: 158 | version "6.22.0" 159 | resolved "https://appier.us:4873/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 160 | dependencies: 161 | babel-runtime "^6.22.0" 162 | babel-traverse "^6.22.0" 163 | babel-types "^6.22.0" 164 | 165 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 166 | version "6.22.0" 167 | resolved "https://appier.us:4873/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 168 | dependencies: 169 | babel-helper-explode-assignable-expression "^6.22.0" 170 | babel-runtime "^6.22.0" 171 | babel-types "^6.22.0" 172 | 173 | babel-helper-call-delegate@^6.22.0: 174 | version "6.22.0" 175 | resolved "https://appier.us:4873/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 176 | dependencies: 177 | babel-helper-hoist-variables "^6.22.0" 178 | babel-runtime "^6.22.0" 179 | babel-traverse "^6.22.0" 180 | babel-types "^6.22.0" 181 | 182 | babel-helper-explode-assignable-expression@^6.22.0: 183 | version "6.22.0" 184 | resolved "https://appier.us:4873/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 185 | dependencies: 186 | babel-runtime "^6.22.0" 187 | babel-traverse "^6.22.0" 188 | babel-types "^6.22.0" 189 | 190 | babel-helper-explode-class@^6.22.0: 191 | version "6.22.0" 192 | resolved "https://appier.us:4873/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 193 | dependencies: 194 | babel-helper-bindify-decorators "^6.22.0" 195 | babel-runtime "^6.22.0" 196 | babel-traverse "^6.22.0" 197 | babel-types "^6.22.0" 198 | 199 | babel-helper-function-name@^6.22.0: 200 | version "6.22.0" 201 | resolved "https://appier.us:4873/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc" 202 | dependencies: 203 | babel-helper-get-function-arity "^6.22.0" 204 | babel-runtime "^6.22.0" 205 | babel-template "^6.22.0" 206 | babel-traverse "^6.22.0" 207 | babel-types "^6.22.0" 208 | 209 | babel-helper-get-function-arity@^6.22.0: 210 | version "6.22.0" 211 | resolved "https://appier.us:4873/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 212 | dependencies: 213 | babel-runtime "^6.22.0" 214 | babel-types "^6.22.0" 215 | 216 | babel-helper-hoist-variables@^6.22.0: 217 | version "6.22.0" 218 | resolved "https://appier.us:4873/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 219 | dependencies: 220 | babel-runtime "^6.22.0" 221 | babel-types "^6.22.0" 222 | 223 | babel-helper-regex@^6.22.0: 224 | version "6.22.0" 225 | resolved "https://appier.us:4873/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 226 | dependencies: 227 | babel-runtime "^6.22.0" 228 | babel-types "^6.22.0" 229 | lodash "^4.2.0" 230 | 231 | babel-helper-remap-async-to-generator@^6.22.0: 232 | version "6.22.0" 233 | resolved "https://appier.us:4873/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 234 | dependencies: 235 | babel-helper-function-name "^6.22.0" 236 | babel-runtime "^6.22.0" 237 | babel-template "^6.22.0" 238 | babel-traverse "^6.22.0" 239 | babel-types "^6.22.0" 240 | 241 | babel-helpers@^6.22.0: 242 | version "6.22.0" 243 | resolved "https://appier.us:4873/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 244 | dependencies: 245 | babel-runtime "^6.22.0" 246 | babel-template "^6.22.0" 247 | 248 | babel-messages@^6.22.0: 249 | version "6.22.0" 250 | resolved "https://appier.us:4873/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | 254 | babel-plugin-syntax-async-functions@^6.8.0: 255 | version "6.13.0" 256 | resolved "https://appier.us:4873/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 257 | 258 | babel-plugin-syntax-async-generators@^6.5.0: 259 | version "6.13.0" 260 | resolved "https://appier.us:4873/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 261 | 262 | babel-plugin-syntax-class-constructor-call@^6.18.0: 263 | version "6.18.0" 264 | resolved "https://appier.us:4873/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 265 | 266 | babel-plugin-syntax-class-properties@^6.8.0: 267 | version "6.13.0" 268 | resolved "https://appier.us:4873/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 269 | 270 | babel-plugin-syntax-decorators@^6.13.0: 271 | version "6.13.0" 272 | resolved "https://appier.us:4873/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 273 | 274 | babel-plugin-syntax-do-expressions@^6.8.0: 275 | version "6.13.0" 276 | resolved "https://appier.us:4873/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 277 | 278 | babel-plugin-syntax-dynamic-import@^6.18.0: 279 | version "6.18.0" 280 | resolved "https://appier.us:4873/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 281 | 282 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 283 | version "6.13.0" 284 | resolved "https://appier.us:4873/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 285 | 286 | babel-plugin-syntax-export-extensions@^6.8.0: 287 | version "6.13.0" 288 | resolved "https://appier.us:4873/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 289 | 290 | babel-plugin-syntax-function-bind@^6.8.0: 291 | version "6.13.0" 292 | resolved "https://appier.us:4873/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 293 | 294 | babel-plugin-syntax-object-rest-spread@^6.8.0: 295 | version "6.13.0" 296 | resolved "https://appier.us:4873/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 297 | 298 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 299 | version "6.22.0" 300 | resolved "https://appier.us:4873/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 301 | 302 | babel-plugin-transform-async-generator-functions@^6.22.0: 303 | version "6.22.0" 304 | resolved "https://appier.us:4873/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 305 | dependencies: 306 | babel-helper-remap-async-to-generator "^6.22.0" 307 | babel-plugin-syntax-async-generators "^6.5.0" 308 | babel-runtime "^6.22.0" 309 | 310 | babel-plugin-transform-async-to-generator@^6.22.0: 311 | version "6.22.0" 312 | resolved "https://appier.us:4873/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 313 | dependencies: 314 | babel-helper-remap-async-to-generator "^6.22.0" 315 | babel-plugin-syntax-async-functions "^6.8.0" 316 | babel-runtime "^6.22.0" 317 | 318 | babel-plugin-transform-class-constructor-call@^6.22.0: 319 | version "6.22.0" 320 | resolved "https://appier.us:4873/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120" 321 | dependencies: 322 | babel-plugin-syntax-class-constructor-call "^6.18.0" 323 | babel-runtime "^6.22.0" 324 | babel-template "^6.22.0" 325 | 326 | babel-plugin-transform-class-properties@^6.22.0: 327 | version "6.22.0" 328 | resolved "https://appier.us:4873/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.22.0.tgz#aa78f8134495c7de06c097118ba061844e1dc1d8" 329 | dependencies: 330 | babel-helper-function-name "^6.22.0" 331 | babel-plugin-syntax-class-properties "^6.8.0" 332 | babel-runtime "^6.22.0" 333 | babel-template "^6.22.0" 334 | 335 | babel-plugin-transform-decorators@^6.22.0: 336 | version "6.22.0" 337 | resolved "https://appier.us:4873/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 338 | dependencies: 339 | babel-helper-explode-class "^6.22.0" 340 | babel-plugin-syntax-decorators "^6.13.0" 341 | babel-runtime "^6.22.0" 342 | babel-template "^6.22.0" 343 | babel-types "^6.22.0" 344 | 345 | babel-plugin-transform-do-expressions@^6.22.0: 346 | version "6.22.0" 347 | resolved "https://appier.us:4873/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 348 | dependencies: 349 | babel-plugin-syntax-do-expressions "^6.8.0" 350 | babel-runtime "^6.22.0" 351 | 352 | babel-plugin-transform-es2015-destructuring@^6.6.5: 353 | version "6.22.0" 354 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6" 355 | dependencies: 356 | babel-runtime "^6.22.0" 357 | 358 | babel-plugin-transform-es2015-function-name@^6.5.0: 359 | version "6.22.0" 360 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 361 | dependencies: 362 | babel-helper-function-name "^6.22.0" 363 | babel-runtime "^6.22.0" 364 | babel-types "^6.22.0" 365 | 366 | babel-plugin-transform-es2015-modules-commonjs@^6.7.4: 367 | version "6.22.0" 368 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145" 369 | dependencies: 370 | babel-plugin-transform-strict-mode "^6.22.0" 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.22.0" 373 | babel-types "^6.22.0" 374 | 375 | babel-plugin-transform-es2015-parameters@^6.7.0: 376 | version "6.22.0" 377 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb" 378 | dependencies: 379 | babel-helper-call-delegate "^6.22.0" 380 | babel-helper-get-function-arity "^6.22.0" 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.22.0" 383 | babel-traverse "^6.22.0" 384 | babel-types "^6.22.0" 385 | 386 | babel-plugin-transform-es2015-shorthand-properties@^6.5.0: 387 | version "6.22.0" 388 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 389 | dependencies: 390 | babel-runtime "^6.22.0" 391 | babel-types "^6.22.0" 392 | 393 | babel-plugin-transform-es2015-spread@^6.6.5: 394 | version "6.22.0" 395 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | 399 | babel-plugin-transform-es2015-sticky-regex@^6.5.0: 400 | version "6.22.0" 401 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 402 | dependencies: 403 | babel-helper-regex "^6.22.0" 404 | babel-runtime "^6.22.0" 405 | babel-types "^6.22.0" 406 | 407 | babel-plugin-transform-es2015-unicode-regex@^6.5.0: 408 | version "6.22.0" 409 | resolved "https://appier.us:4873/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 410 | dependencies: 411 | babel-helper-regex "^6.22.0" 412 | babel-runtime "^6.22.0" 413 | regexpu-core "^2.0.0" 414 | 415 | babel-plugin-transform-exponentiation-operator@^6.22.0: 416 | version "6.22.0" 417 | resolved "https://appier.us:4873/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 418 | dependencies: 419 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 420 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 421 | babel-runtime "^6.22.0" 422 | 423 | babel-plugin-transform-export-extensions@^6.22.0: 424 | version "6.22.0" 425 | resolved "https://appier.us:4873/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 426 | dependencies: 427 | babel-plugin-syntax-export-extensions "^6.8.0" 428 | babel-runtime "^6.22.0" 429 | 430 | babel-plugin-transform-function-bind@^6.22.0: 431 | version "6.22.0" 432 | resolved "https://appier.us:4873/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 433 | dependencies: 434 | babel-plugin-syntax-function-bind "^6.8.0" 435 | babel-runtime "^6.22.0" 436 | 437 | babel-plugin-transform-object-rest-spread@^6.22.0: 438 | version "6.22.0" 439 | resolved "https://appier.us:4873/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.22.0.tgz#1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc" 440 | dependencies: 441 | babel-plugin-syntax-object-rest-spread "^6.8.0" 442 | babel-runtime "^6.22.0" 443 | 444 | babel-plugin-transform-strict-mode@^6.22.0: 445 | version "6.22.0" 446 | resolved "https://appier.us:4873/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | babel-types "^6.22.0" 450 | 451 | babel-polyfill@^6.22.0: 452 | version "6.22.0" 453 | resolved "https://appier.us:4873/babel-polyfill/-/babel-polyfill-6.22.0.tgz#1ac99ebdcc6ba4db1e2618c387b2084a82154a3b" 454 | dependencies: 455 | babel-runtime "^6.22.0" 456 | core-js "^2.4.0" 457 | regenerator-runtime "^0.10.0" 458 | 459 | babel-preset-es2015-node4@^2.1.0: 460 | version "2.1.1" 461 | resolved "https://appier.us:4873/babel-preset-es2015-node4/-/babel-preset-es2015-node4-2.1.1.tgz#e31f290859b58619c8cfa241d1b0bc900f941cdb" 462 | dependencies: 463 | babel-plugin-transform-es2015-destructuring "^6.6.5" 464 | babel-plugin-transform-es2015-function-name "^6.5.0" 465 | babel-plugin-transform-es2015-modules-commonjs "^6.7.4" 466 | babel-plugin-transform-es2015-parameters "^6.7.0" 467 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 468 | babel-plugin-transform-es2015-spread "^6.6.5" 469 | babel-plugin-transform-es2015-sticky-regex "^6.5.0" 470 | babel-plugin-transform-es2015-unicode-regex "^6.5.0" 471 | 472 | babel-preset-stage-0@^6.5.0: 473 | version "6.22.0" 474 | resolved "https://appier.us:4873/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz#707eeb5b415da769eff9c42f4547f644f9296ef9" 475 | dependencies: 476 | babel-plugin-transform-do-expressions "^6.22.0" 477 | babel-plugin-transform-function-bind "^6.22.0" 478 | babel-preset-stage-1 "^6.22.0" 479 | 480 | babel-preset-stage-1@^6.22.0: 481 | version "6.22.0" 482 | resolved "https://appier.us:4873/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a" 483 | dependencies: 484 | babel-plugin-transform-class-constructor-call "^6.22.0" 485 | babel-plugin-transform-export-extensions "^6.22.0" 486 | babel-preset-stage-2 "^6.22.0" 487 | 488 | babel-preset-stage-2@^6.22.0: 489 | version "6.22.0" 490 | resolved "https://appier.us:4873/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 491 | dependencies: 492 | babel-plugin-syntax-dynamic-import "^6.18.0" 493 | babel-plugin-transform-class-properties "^6.22.0" 494 | babel-plugin-transform-decorators "^6.22.0" 495 | babel-preset-stage-3 "^6.22.0" 496 | 497 | babel-preset-stage-3@^6.22.0: 498 | version "6.22.0" 499 | resolved "https://appier.us:4873/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 500 | dependencies: 501 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 502 | babel-plugin-transform-async-generator-functions "^6.22.0" 503 | babel-plugin-transform-async-to-generator "^6.22.0" 504 | babel-plugin-transform-exponentiation-operator "^6.22.0" 505 | babel-plugin-transform-object-rest-spread "^6.22.0" 506 | 507 | babel-register@^6.22.0: 508 | version "6.22.0" 509 | resolved "https://appier.us:4873/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 510 | dependencies: 511 | babel-core "^6.22.0" 512 | babel-runtime "^6.22.0" 513 | core-js "^2.4.0" 514 | home-or-tmp "^2.0.0" 515 | lodash "^4.2.0" 516 | mkdirp "^0.5.1" 517 | source-map-support "^0.4.2" 518 | 519 | babel-runtime@^6.22.0: 520 | version "6.22.0" 521 | resolved "https://appier.us:4873/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 522 | dependencies: 523 | core-js "^2.4.0" 524 | regenerator-runtime "^0.10.0" 525 | 526 | babel-template@^6.22.0: 527 | version "6.22.0" 528 | resolved "https://appier.us:4873/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 529 | dependencies: 530 | babel-runtime "^6.22.0" 531 | babel-traverse "^6.22.0" 532 | babel-types "^6.22.0" 533 | babylon "^6.11.0" 534 | lodash "^4.2.0" 535 | 536 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 537 | version "6.22.1" 538 | resolved "https://appier.us:4873/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 539 | dependencies: 540 | babel-code-frame "^6.22.0" 541 | babel-messages "^6.22.0" 542 | babel-runtime "^6.22.0" 543 | babel-types "^6.22.0" 544 | babylon "^6.15.0" 545 | debug "^2.2.0" 546 | globals "^9.0.0" 547 | invariant "^2.2.0" 548 | lodash "^4.2.0" 549 | 550 | babel-types@^6.22.0: 551 | version "6.22.0" 552 | resolved "https://appier.us:4873/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 553 | dependencies: 554 | babel-runtime "^6.22.0" 555 | esutils "^2.0.2" 556 | lodash "^4.2.0" 557 | to-fast-properties "^1.0.1" 558 | 559 | babylon@^6.11.0, babylon@^6.15.0: 560 | version "6.15.0" 561 | resolved "https://appier.us:4873/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 562 | 563 | balanced-match@^0.4.1: 564 | version "0.4.2" 565 | resolved "https://appier.us:4873/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 566 | 567 | base64-url@1.3.3: 568 | version "1.3.3" 569 | resolved "https://appier.us:4873/base64-url/-/base64-url-1.3.3.tgz#f8b6c537f09a4fc58c99cb86e0b0e9c61461a20f" 570 | 571 | bcrypt-pbkdf@^1.0.0: 572 | version "1.0.0" 573 | resolved "https://appier.us:4873/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 574 | dependencies: 575 | tweetnacl "^0.14.3" 576 | 577 | binary-extensions@^1.0.0: 578 | version "1.8.0" 579 | resolved "https://appier.us:4873/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 580 | 581 | block-stream@*: 582 | version "0.0.9" 583 | resolved "https://appier.us:4873/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 584 | dependencies: 585 | inherits "~2.0.0" 586 | 587 | body-parser@^1.15.0: 588 | version "1.16.0" 589 | resolved "https://appier.us:4873/body-parser/-/body-parser-1.16.0.tgz#924a5e472c6229fb9d69b85a20d5f2532dec788b" 590 | dependencies: 591 | bytes "2.4.0" 592 | content-type "~1.0.2" 593 | debug "2.6.0" 594 | depd "~1.1.0" 595 | http-errors "~1.5.1" 596 | iconv-lite "0.4.15" 597 | on-finished "~2.3.0" 598 | qs "6.2.1" 599 | raw-body "~2.2.0" 600 | type-is "~1.6.14" 601 | 602 | boom@2.x.x: 603 | version "2.10.1" 604 | resolved "https://appier.us:4873/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 605 | dependencies: 606 | hoek "2.x.x" 607 | 608 | brace-expansion@^1.0.0: 609 | version "1.1.6" 610 | resolved "https://appier.us:4873/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 611 | dependencies: 612 | balanced-match "^0.4.1" 613 | concat-map "0.0.1" 614 | 615 | braces@^1.8.2: 616 | version "1.8.5" 617 | resolved "https://appier.us:4873/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 618 | dependencies: 619 | expand-range "^1.8.1" 620 | preserve "^0.2.0" 621 | repeat-element "^1.1.2" 622 | 623 | buffer-shims@^1.0.0: 624 | version "1.0.0" 625 | resolved "https://appier.us:4873/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 626 | 627 | bytes@2.4.0: 628 | version "2.4.0" 629 | resolved "https://appier.us:4873/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 630 | 631 | caseless@~0.11.0: 632 | version "0.11.0" 633 | resolved "https://appier.us:4873/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 634 | 635 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 636 | version "1.1.3" 637 | resolved "https://appier.us:4873/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 638 | dependencies: 639 | ansi-styles "^2.2.1" 640 | escape-string-regexp "^1.0.2" 641 | has-ansi "^2.0.0" 642 | strip-ansi "^3.0.0" 643 | supports-color "^2.0.0" 644 | 645 | chokidar@^1.4.3, chokidar@^1.6.1: 646 | version "1.6.1" 647 | resolved "https://appier.us:4873/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 648 | dependencies: 649 | anymatch "^1.3.0" 650 | async-each "^1.0.0" 651 | glob-parent "^2.0.0" 652 | inherits "^2.0.1" 653 | is-binary-path "^1.0.0" 654 | is-glob "^2.0.0" 655 | path-is-absolute "^1.0.0" 656 | readdirp "^2.0.0" 657 | optionalDependencies: 658 | fsevents "^1.0.0" 659 | 660 | code-point-at@^1.0.0: 661 | version "1.1.0" 662 | resolved "https://appier.us:4873/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 663 | 664 | combined-stream@^1.0.5, combined-stream@~1.0.5: 665 | version "1.0.5" 666 | resolved "https://appier.us:4873/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 667 | dependencies: 668 | delayed-stream "~1.0.0" 669 | 670 | commander@^2.8.1, commander@^2.9.0: 671 | version "2.9.0" 672 | resolved "https://appier.us:4873/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 673 | dependencies: 674 | graceful-readlink ">= 1.0.0" 675 | 676 | concat-map@0.0.1: 677 | version "0.0.1" 678 | resolved "https://appier.us:4873/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 679 | 680 | configstore@^1.0.0: 681 | version "1.4.0" 682 | resolved "https://appier.us:4873/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 683 | dependencies: 684 | graceful-fs "^4.1.2" 685 | mkdirp "^0.5.0" 686 | object-assign "^4.0.1" 687 | os-tmpdir "^1.0.0" 688 | osenv "^0.1.0" 689 | uuid "^2.0.1" 690 | write-file-atomic "^1.1.2" 691 | xdg-basedir "^2.0.0" 692 | 693 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 694 | version "1.1.0" 695 | resolved "https://appier.us:4873/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 696 | 697 | content-disposition@0.5.1: 698 | version "0.5.1" 699 | resolved "https://appier.us:4873/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" 700 | 701 | content-type@^1.0.0, content-type@~1.0.2: 702 | version "1.0.2" 703 | resolved "https://appier.us:4873/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 704 | 705 | convert-source-map@^1.1.0: 706 | version "1.3.0" 707 | resolved "https://appier.us:4873/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 708 | 709 | cookie-signature@1.0.6: 710 | version "1.0.6" 711 | resolved "https://appier.us:4873/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 712 | 713 | cookie@0.3.1: 714 | version "0.3.1" 715 | resolved "https://appier.us:4873/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 716 | 717 | core-js@^2.4.0: 718 | version "2.4.1" 719 | resolved "https://appier.us:4873/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 720 | 721 | core-util-is@~1.0.0: 722 | version "1.0.2" 723 | resolved "https://appier.us:4873/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 724 | 725 | crc@3.4.4: 726 | version "3.4.4" 727 | resolved "https://appier.us:4873/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" 728 | 729 | cryptiles@2.x.x: 730 | version "2.0.5" 731 | resolved "https://appier.us:4873/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 732 | dependencies: 733 | boom "2.x.x" 734 | 735 | dashdash@^1.12.0: 736 | version "1.14.1" 737 | resolved "https://appier.us:4873/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 738 | dependencies: 739 | assert-plus "^1.0.0" 740 | 741 | dataloader@^1.2.0: 742 | version "1.2.0" 743 | resolved "https://appier.us:4873/dataloader/-/dataloader-1.2.0.tgz#3f73ea657c492c860c1633348adc55ca9bf2107e" 744 | 745 | debug@2.6.0, debug@^2.1.1, debug@^2.2.0: 746 | version "2.6.0" 747 | resolved "https://appier.us:4873/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 748 | dependencies: 749 | ms "0.7.2" 750 | 751 | debug@~2.2.0: 752 | version "2.2.0" 753 | resolved "https://appier.us:4873/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 754 | dependencies: 755 | ms "0.7.1" 756 | 757 | deep-extend@~0.4.0: 758 | version "0.4.1" 759 | resolved "https://appier.us:4873/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 760 | 761 | delayed-stream@~1.0.0: 762 | version "1.0.0" 763 | resolved "https://appier.us:4873/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 764 | 765 | delegates@^1.0.0: 766 | version "1.0.0" 767 | resolved "https://appier.us:4873/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 768 | 769 | depd@~1.1.0: 770 | version "1.1.0" 771 | resolved "https://appier.us:4873/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 772 | 773 | destroy@~1.0.4: 774 | version "1.0.4" 775 | resolved "https://appier.us:4873/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 776 | 777 | detect-indent@^4.0.0: 778 | version "4.0.0" 779 | resolved "https://appier.us:4873/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 780 | dependencies: 781 | repeating "^2.0.0" 782 | 783 | duplexer@~0.1.1: 784 | version "0.1.1" 785 | resolved "https://appier.us:4873/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 786 | 787 | duplexify@^3.2.0: 788 | version "3.5.0" 789 | resolved "https://appier.us:4873/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 790 | dependencies: 791 | end-of-stream "1.0.0" 792 | inherits "^2.0.1" 793 | readable-stream "^2.0.0" 794 | stream-shift "^1.0.0" 795 | 796 | ecc-jsbn@~0.1.1: 797 | version "0.1.1" 798 | resolved "https://appier.us:4873/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 799 | dependencies: 800 | jsbn "~0.1.0" 801 | 802 | ee-first@1.1.1: 803 | version "1.1.1" 804 | resolved "https://appier.us:4873/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 805 | 806 | encodeurl@~1.0.1: 807 | version "1.0.1" 808 | resolved "https://appier.us:4873/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 809 | 810 | end-of-stream@1.0.0: 811 | version "1.0.0" 812 | resolved "https://appier.us:4873/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 813 | dependencies: 814 | once "~1.3.0" 815 | 816 | es6-promise@^3.0.2: 817 | version "3.3.1" 818 | resolved "https://appier.us:4873/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 819 | 820 | escape-html@~1.0.3: 821 | version "1.0.3" 822 | resolved "https://appier.us:4873/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 823 | 824 | escape-string-regexp@^1.0.2: 825 | version "1.0.5" 826 | resolved "https://appier.us:4873/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 827 | 828 | esutils@^2.0.2: 829 | version "2.0.2" 830 | resolved "https://appier.us:4873/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 831 | 832 | etag@~1.7.0: 833 | version "1.7.0" 834 | resolved "https://appier.us:4873/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 835 | 836 | event-stream@~3.3.0: 837 | version "3.3.4" 838 | resolved "https://appier.us:4873/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 839 | dependencies: 840 | duplexer "~0.1.1" 841 | from "~0" 842 | map-stream "~0.1.0" 843 | pause-stream "0.0.11" 844 | split "0.3" 845 | stream-combiner "~0.0.4" 846 | through "~2.3.1" 847 | 848 | expand-brackets@^0.1.4: 849 | version "0.1.5" 850 | resolved "https://appier.us:4873/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 851 | dependencies: 852 | is-posix-bracket "^0.1.0" 853 | 854 | expand-range@^1.8.1: 855 | version "1.8.2" 856 | resolved "https://appier.us:4873/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 857 | dependencies: 858 | fill-range "^2.1.0" 859 | 860 | express-graphql@^0.6.1: 861 | version "0.6.1" 862 | resolved "https://appier.us:4873/express-graphql/-/express-graphql-0.6.1.tgz#cd9d144ac4d191b34a4261ac3a56fa407d5e19e8" 863 | dependencies: 864 | accepts "^1.3.0" 865 | content-type "^1.0.0" 866 | http-errors "^1.3.0" 867 | raw-body "^2.1.0" 868 | 869 | express-session@^1.13.0: 870 | version "1.15.0" 871 | resolved "https://appier.us:4873/express-session/-/express-session-1.15.0.tgz#67131dd5b78a42bc57b50af0a14880265c03f919" 872 | dependencies: 873 | cookie "0.3.1" 874 | cookie-signature "1.0.6" 875 | crc "3.4.4" 876 | debug "2.6.0" 877 | depd "~1.1.0" 878 | on-headers "~1.0.1" 879 | parseurl "~1.3.1" 880 | uid-safe "~2.1.3" 881 | utils-merge "1.0.0" 882 | 883 | express@^4.13.4: 884 | version "4.14.0" 885 | resolved "https://appier.us:4873/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" 886 | dependencies: 887 | accepts "~1.3.3" 888 | array-flatten "1.1.1" 889 | content-disposition "0.5.1" 890 | content-type "~1.0.2" 891 | cookie "0.3.1" 892 | cookie-signature "1.0.6" 893 | debug "~2.2.0" 894 | depd "~1.1.0" 895 | encodeurl "~1.0.1" 896 | escape-html "~1.0.3" 897 | etag "~1.7.0" 898 | finalhandler "0.5.0" 899 | fresh "0.3.0" 900 | merge-descriptors "1.0.1" 901 | methods "~1.1.2" 902 | on-finished "~2.3.0" 903 | parseurl "~1.3.1" 904 | path-to-regexp "0.1.7" 905 | proxy-addr "~1.1.2" 906 | qs "6.2.0" 907 | range-parser "~1.2.0" 908 | send "0.14.1" 909 | serve-static "~1.11.1" 910 | type-is "~1.6.13" 911 | utils-merge "1.0.0" 912 | vary "~1.1.0" 913 | 914 | extend@~3.0.0: 915 | version "3.0.0" 916 | resolved "https://appier.us:4873/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 917 | 918 | extglob@^0.3.1: 919 | version "0.3.2" 920 | resolved "https://appier.us:4873/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 921 | dependencies: 922 | is-extglob "^1.0.0" 923 | 924 | extsprintf@1.0.2: 925 | version "1.0.2" 926 | resolved "https://appier.us:4873/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 927 | 928 | filename-regex@^2.0.0: 929 | version "2.0.0" 930 | resolved "https://appier.us:4873/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 931 | 932 | fill-range@^2.1.0: 933 | version "2.2.3" 934 | resolved "https://appier.us:4873/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 935 | dependencies: 936 | is-number "^2.1.0" 937 | isobject "^2.0.0" 938 | randomatic "^1.1.3" 939 | repeat-element "^1.1.2" 940 | repeat-string "^1.5.2" 941 | 942 | finalhandler@0.5.0: 943 | version "0.5.0" 944 | resolved "https://appier.us:4873/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 945 | dependencies: 946 | debug "~2.2.0" 947 | escape-html "~1.0.3" 948 | on-finished "~2.3.0" 949 | statuses "~1.3.0" 950 | unpipe "~1.0.0" 951 | 952 | for-in@^0.1.5: 953 | version "0.1.6" 954 | resolved "https://appier.us:4873/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 955 | 956 | for-own@^0.1.4: 957 | version "0.1.4" 958 | resolved "https://appier.us:4873/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 959 | dependencies: 960 | for-in "^0.1.5" 961 | 962 | forever-agent@~0.6.1: 963 | version "0.6.1" 964 | resolved "https://appier.us:4873/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 965 | 966 | form-data@~2.1.1: 967 | version "2.1.2" 968 | resolved "https://appier.us:4873/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 969 | dependencies: 970 | asynckit "^0.4.0" 971 | combined-stream "^1.0.5" 972 | mime-types "^2.1.12" 973 | 974 | forwarded@~0.1.0: 975 | version "0.1.0" 976 | resolved "https://appier.us:4873/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 977 | 978 | fresh@0.3.0: 979 | version "0.3.0" 980 | resolved "https://appier.us:4873/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 981 | 982 | from@~0: 983 | version "0.1.3" 984 | resolved "https://appier.us:4873/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 985 | 986 | fs-readdir-recursive@^1.0.0: 987 | version "1.0.0" 988 | resolved "https://appier.us:4873/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 989 | 990 | fs.realpath@^1.0.0: 991 | version "1.0.0" 992 | resolved "https://appier.us:4873/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 993 | 994 | fsevents@^1.0.0: 995 | version "1.0.17" 996 | resolved "https://appier.us:4873/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 997 | dependencies: 998 | nan "^2.3.0" 999 | node-pre-gyp "^0.6.29" 1000 | 1001 | fstream-ignore@~1.0.5: 1002 | version "1.0.5" 1003 | resolved "https://appier.us:4873/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1004 | dependencies: 1005 | fstream "^1.0.0" 1006 | inherits "2" 1007 | minimatch "^3.0.0" 1008 | 1009 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1010 | version "1.0.10" 1011 | resolved "https://appier.us:4873/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1012 | dependencies: 1013 | graceful-fs "^4.1.2" 1014 | inherits "~2.0.0" 1015 | mkdirp ">=0.5 0" 1016 | rimraf "2" 1017 | 1018 | gauge@~2.7.1: 1019 | version "2.7.2" 1020 | resolved "https://appier.us:4873/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1021 | dependencies: 1022 | aproba "^1.0.3" 1023 | console-control-strings "^1.0.0" 1024 | has-unicode "^2.0.0" 1025 | object-assign "^4.1.0" 1026 | signal-exit "^3.0.0" 1027 | string-width "^1.0.1" 1028 | strip-ansi "^3.0.1" 1029 | supports-color "^0.2.0" 1030 | wide-align "^1.1.0" 1031 | 1032 | generate-function@^2.0.0: 1033 | version "2.0.0" 1034 | resolved "https://appier.us:4873/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1035 | 1036 | generate-object-property@^1.1.0: 1037 | version "1.2.0" 1038 | resolved "https://appier.us:4873/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1039 | dependencies: 1040 | is-property "^1.0.0" 1041 | 1042 | getpass@^0.1.1: 1043 | version "0.1.6" 1044 | resolved "https://appier.us:4873/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1045 | dependencies: 1046 | assert-plus "^1.0.0" 1047 | 1048 | glob-base@^0.3.0: 1049 | version "0.3.0" 1050 | resolved "https://appier.us:4873/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1051 | dependencies: 1052 | glob-parent "^2.0.0" 1053 | is-glob "^2.0.0" 1054 | 1055 | glob-parent@^2.0.0: 1056 | version "2.0.0" 1057 | resolved "https://appier.us:4873/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1058 | dependencies: 1059 | is-glob "^2.0.0" 1060 | 1061 | glob@^7.0.0, glob@^7.0.5: 1062 | version "7.1.1" 1063 | resolved "https://appier.us:4873/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1064 | dependencies: 1065 | fs.realpath "^1.0.0" 1066 | inflight "^1.0.4" 1067 | inherits "2" 1068 | minimatch "^3.0.2" 1069 | once "^1.3.0" 1070 | path-is-absolute "^1.0.0" 1071 | 1072 | globals@^9.0.0: 1073 | version "9.14.0" 1074 | resolved "https://appier.us:4873/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1075 | 1076 | got@^3.2.0: 1077 | version "3.3.1" 1078 | resolved "https://appier.us:4873/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1079 | dependencies: 1080 | duplexify "^3.2.0" 1081 | infinity-agent "^2.0.0" 1082 | is-redirect "^1.0.0" 1083 | is-stream "^1.0.0" 1084 | lowercase-keys "^1.0.0" 1085 | nested-error-stacks "^1.0.0" 1086 | object-assign "^3.0.0" 1087 | prepend-http "^1.0.0" 1088 | read-all-stream "^3.0.0" 1089 | timed-out "^2.0.0" 1090 | 1091 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1092 | version "4.1.11" 1093 | resolved "https://appier.us:4873/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1094 | 1095 | "graceful-readlink@>= 1.0.0": 1096 | version "1.0.1" 1097 | resolved "https://appier.us:4873/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1098 | 1099 | graphql@^0.8.2: 1100 | version "0.8.2" 1101 | resolved "https://appier.us:4873/graphql/-/graphql-0.8.2.tgz#eb1bb524b38104bbf2c9157f9abc67db2feba7d2" 1102 | dependencies: 1103 | iterall "1.0.2" 1104 | 1105 | har-validator@~2.0.6: 1106 | version "2.0.6" 1107 | resolved "https://appier.us:4873/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1108 | dependencies: 1109 | chalk "^1.1.1" 1110 | commander "^2.9.0" 1111 | is-my-json-valid "^2.12.4" 1112 | pinkie-promise "^2.0.0" 1113 | 1114 | has-ansi@^2.0.0: 1115 | version "2.0.0" 1116 | resolved "https://appier.us:4873/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1117 | dependencies: 1118 | ansi-regex "^2.0.0" 1119 | 1120 | has-unicode@^2.0.0: 1121 | version "2.0.1" 1122 | resolved "https://appier.us:4873/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1123 | 1124 | hawk@~3.1.3: 1125 | version "3.1.3" 1126 | resolved "https://appier.us:4873/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1127 | dependencies: 1128 | boom "2.x.x" 1129 | cryptiles "2.x.x" 1130 | hoek "2.x.x" 1131 | sntp "1.x.x" 1132 | 1133 | hoek@2.x.x: 1134 | version "2.16.3" 1135 | resolved "https://appier.us:4873/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1136 | 1137 | home-or-tmp@^2.0.0: 1138 | version "2.0.0" 1139 | resolved "https://appier.us:4873/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1140 | dependencies: 1141 | os-homedir "^1.0.0" 1142 | os-tmpdir "^1.0.1" 1143 | 1144 | http-errors@^1.3.0, http-errors@~1.5.0, http-errors@~1.5.1: 1145 | version "1.5.1" 1146 | resolved "https://appier.us:4873/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1147 | dependencies: 1148 | inherits "2.0.3" 1149 | setprototypeof "1.0.2" 1150 | statuses ">= 1.3.1 < 2" 1151 | 1152 | http-signature@~1.1.0: 1153 | version "1.1.1" 1154 | resolved "https://appier.us:4873/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1155 | dependencies: 1156 | assert-plus "^0.2.0" 1157 | jsprim "^1.2.2" 1158 | sshpk "^1.7.0" 1159 | 1160 | http-status@^0.2.2: 1161 | version "0.2.5" 1162 | resolved "https://appier.us:4873/http-status/-/http-status-0.2.5.tgz#976f91077ea7bfc15277cbcf8c80c4d5c51b49b0" 1163 | 1164 | iconv-lite@0.4.15: 1165 | version "0.4.15" 1166 | resolved "https://appier.us:4873/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1167 | 1168 | ignore-by-default@^1.0.0: 1169 | version "1.0.1" 1170 | resolved "https://appier.us:4873/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1171 | 1172 | immutable@^3.8.1: 1173 | version "3.8.1" 1174 | resolved "https://appier.us:4873/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1175 | 1176 | imurmurhash@^0.1.4: 1177 | version "0.1.4" 1178 | resolved "https://appier.us:4873/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1179 | 1180 | infinity-agent@^2.0.0: 1181 | version "2.0.3" 1182 | resolved "https://appier.us:4873/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1183 | 1184 | inflight@^1.0.4: 1185 | version "1.0.6" 1186 | resolved "https://appier.us:4873/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1187 | dependencies: 1188 | once "^1.3.0" 1189 | wrappy "1" 1190 | 1191 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1192 | version "2.0.3" 1193 | resolved "https://appier.us:4873/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1194 | 1195 | ini@~1.3.0: 1196 | version "1.3.4" 1197 | resolved "https://appier.us:4873/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1198 | 1199 | invariant@^2.2.0: 1200 | version "2.2.2" 1201 | resolved "https://appier.us:4873/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1202 | dependencies: 1203 | loose-envify "^1.0.0" 1204 | 1205 | ipaddr.js@1.2.0: 1206 | version "1.2.0" 1207 | resolved "https://appier.us:4873/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 1208 | 1209 | is-binary-path@^1.0.0: 1210 | version "1.0.1" 1211 | resolved "https://appier.us:4873/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1212 | dependencies: 1213 | binary-extensions "^1.0.0" 1214 | 1215 | is-buffer@^1.0.2: 1216 | version "1.1.4" 1217 | resolved "https://appier.us:4873/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1218 | 1219 | is-dotfile@^1.0.0: 1220 | version "1.0.2" 1221 | resolved "https://appier.us:4873/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1222 | 1223 | is-equal-shallow@^0.1.3: 1224 | version "0.1.3" 1225 | resolved "https://appier.us:4873/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1226 | dependencies: 1227 | is-primitive "^2.0.0" 1228 | 1229 | is-extendable@^0.1.1: 1230 | version "0.1.1" 1231 | resolved "https://appier.us:4873/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1232 | 1233 | is-extglob@^1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://appier.us:4873/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1236 | 1237 | is-finite@^1.0.0: 1238 | version "1.0.2" 1239 | resolved "https://appier.us:4873/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1240 | dependencies: 1241 | number-is-nan "^1.0.0" 1242 | 1243 | is-fullwidth-code-point@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://appier.us:4873/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1246 | dependencies: 1247 | number-is-nan "^1.0.0" 1248 | 1249 | is-glob@^2.0.0, is-glob@^2.0.1: 1250 | version "2.0.1" 1251 | resolved "https://appier.us:4873/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1252 | dependencies: 1253 | is-extglob "^1.0.0" 1254 | 1255 | is-my-json-valid@^2.12.4: 1256 | version "2.15.0" 1257 | resolved "https://appier.us:4873/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1258 | dependencies: 1259 | generate-function "^2.0.0" 1260 | generate-object-property "^1.1.0" 1261 | jsonpointer "^4.0.0" 1262 | xtend "^4.0.0" 1263 | 1264 | is-npm@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://appier.us:4873/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1267 | 1268 | is-number@^2.0.2, is-number@^2.1.0: 1269 | version "2.1.0" 1270 | resolved "https://appier.us:4873/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1271 | dependencies: 1272 | kind-of "^3.0.2" 1273 | 1274 | is-posix-bracket@^0.1.0: 1275 | version "0.1.1" 1276 | resolved "https://appier.us:4873/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1277 | 1278 | is-primitive@^2.0.0: 1279 | version "2.0.0" 1280 | resolved "https://appier.us:4873/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1281 | 1282 | is-property@^1.0.0: 1283 | version "1.0.2" 1284 | resolved "https://appier.us:4873/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1285 | 1286 | is-redirect@^1.0.0: 1287 | version "1.0.0" 1288 | resolved "https://appier.us:4873/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1289 | 1290 | is-stream@^1.0.0: 1291 | version "1.1.0" 1292 | resolved "https://appier.us:4873/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1293 | 1294 | is-typedarray@~1.0.0: 1295 | version "1.0.0" 1296 | resolved "https://appier.us:4873/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1297 | 1298 | isarray@1.0.0, isarray@~1.0.0: 1299 | version "1.0.0" 1300 | resolved "https://appier.us:4873/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1301 | 1302 | isobject@^2.0.0: 1303 | version "2.1.0" 1304 | resolved "https://appier.us:4873/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1305 | dependencies: 1306 | isarray "1.0.0" 1307 | 1308 | isstream@~0.1.2: 1309 | version "0.1.2" 1310 | resolved "https://appier.us:4873/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1311 | 1312 | iterall@1.0.2: 1313 | version "1.0.2" 1314 | resolved "https://appier.us:4873/iterall/-/iterall-1.0.2.tgz#41a2e96ce9eda5e61c767ee5dc312373bb046e91" 1315 | 1316 | jodid25519@^1.0.0: 1317 | version "1.0.2" 1318 | resolved "https://appier.us:4873/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1319 | dependencies: 1320 | jsbn "~0.1.0" 1321 | 1322 | js-tokens@^3.0.0: 1323 | version "3.0.0" 1324 | resolved "https://appier.us:4873/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1" 1325 | 1326 | jsbn@~0.1.0: 1327 | version "0.1.0" 1328 | resolved "https://appier.us:4873/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1329 | 1330 | jsesc@^1.3.0: 1331 | version "1.3.0" 1332 | resolved "https://appier.us:4873/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1333 | 1334 | jsesc@~0.5.0: 1335 | version "0.5.0" 1336 | resolved "https://appier.us:4873/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1337 | 1338 | json-schema@0.2.3: 1339 | version "0.2.3" 1340 | resolved "https://appier.us:4873/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1341 | 1342 | json-stringify-safe@~5.0.1: 1343 | version "5.0.1" 1344 | resolved "https://appier.us:4873/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1345 | 1346 | json5@^0.5.0: 1347 | version "0.5.1" 1348 | resolved "https://appier.us:4873/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1349 | 1350 | jsonpointer@^4.0.0: 1351 | version "4.0.1" 1352 | resolved "https://appier.us:4873/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1353 | 1354 | jsprim@^1.2.2: 1355 | version "1.3.1" 1356 | resolved "https://appier.us:4873/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1357 | dependencies: 1358 | extsprintf "1.0.2" 1359 | json-schema "0.2.3" 1360 | verror "1.3.6" 1361 | 1362 | kind-of@^3.0.2: 1363 | version "3.1.0" 1364 | resolved "https://appier.us:4873/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1365 | dependencies: 1366 | is-buffer "^1.0.2" 1367 | 1368 | latest-version@^1.0.0: 1369 | version "1.0.1" 1370 | resolved "https://appier.us:4873/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 1371 | dependencies: 1372 | package-json "^1.0.0" 1373 | 1374 | lodash._baseassign@^3.0.0: 1375 | version "3.2.0" 1376 | resolved "https://appier.us:4873/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1377 | dependencies: 1378 | lodash._basecopy "^3.0.0" 1379 | lodash.keys "^3.0.0" 1380 | 1381 | lodash._basecopy@^3.0.0: 1382 | version "3.0.1" 1383 | resolved "https://appier.us:4873/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1384 | 1385 | lodash._bindcallback@^3.0.0: 1386 | version "3.0.1" 1387 | resolved "https://appier.us:4873/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1388 | 1389 | lodash._createassigner@^3.0.0: 1390 | version "3.1.1" 1391 | resolved "https://appier.us:4873/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1392 | dependencies: 1393 | lodash._bindcallback "^3.0.0" 1394 | lodash._isiterateecall "^3.0.0" 1395 | lodash.restparam "^3.0.0" 1396 | 1397 | lodash._getnative@^3.0.0: 1398 | version "3.9.1" 1399 | resolved "https://appier.us:4873/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1400 | 1401 | lodash._isiterateecall@^3.0.0: 1402 | version "3.0.9" 1403 | resolved "https://appier.us:4873/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1404 | 1405 | lodash.assign@^3.0.0: 1406 | version "3.2.0" 1407 | resolved "https://appier.us:4873/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1408 | dependencies: 1409 | lodash._baseassign "^3.0.0" 1410 | lodash._createassigner "^3.0.0" 1411 | lodash.keys "^3.0.0" 1412 | 1413 | lodash.defaults@^3.1.2: 1414 | version "3.1.2" 1415 | resolved "https://appier.us:4873/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 1416 | dependencies: 1417 | lodash.assign "^3.0.0" 1418 | lodash.restparam "^3.0.0" 1419 | 1420 | lodash.isarguments@^3.0.0: 1421 | version "3.1.0" 1422 | resolved "https://appier.us:4873/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1423 | 1424 | lodash.isarray@^3.0.0: 1425 | version "3.0.4" 1426 | resolved "https://appier.us:4873/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1427 | 1428 | lodash.keys@^3.0.0: 1429 | version "3.1.2" 1430 | resolved "https://appier.us:4873/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1431 | dependencies: 1432 | lodash._getnative "^3.0.0" 1433 | lodash.isarguments "^3.0.0" 1434 | lodash.isarray "^3.0.0" 1435 | 1436 | lodash.restparam@^3.0.0: 1437 | version "3.6.1" 1438 | resolved "https://appier.us:4873/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1439 | 1440 | lodash@^4.2.0: 1441 | version "4.17.4" 1442 | resolved "https://appier.us:4873/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1443 | 1444 | loose-envify@^1.0.0: 1445 | version "1.3.1" 1446 | resolved "https://appier.us:4873/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1447 | dependencies: 1448 | js-tokens "^3.0.0" 1449 | 1450 | lowercase-keys@^1.0.0: 1451 | version "1.0.0" 1452 | resolved "https://appier.us:4873/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1453 | 1454 | map-stream@~0.1.0: 1455 | version "0.1.0" 1456 | resolved "https://appier.us:4873/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1457 | 1458 | media-typer@0.3.0: 1459 | version "0.3.0" 1460 | resolved "https://appier.us:4873/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1461 | 1462 | merge-descriptors@1.0.1: 1463 | version "1.0.1" 1464 | resolved "https://appier.us:4873/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1465 | 1466 | methods@~1.1.2: 1467 | version "1.1.2" 1468 | resolved "https://appier.us:4873/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1469 | 1470 | micromatch@^2.1.5: 1471 | version "2.3.11" 1472 | resolved "https://appier.us:4873/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1473 | dependencies: 1474 | arr-diff "^2.0.0" 1475 | array-unique "^0.2.1" 1476 | braces "^1.8.2" 1477 | expand-brackets "^0.1.4" 1478 | extglob "^0.3.1" 1479 | filename-regex "^2.0.0" 1480 | is-extglob "^1.0.0" 1481 | is-glob "^2.0.1" 1482 | kind-of "^3.0.2" 1483 | normalize-path "^2.0.1" 1484 | object.omit "^2.0.0" 1485 | parse-glob "^3.0.4" 1486 | regex-cache "^0.4.2" 1487 | 1488 | mime-db@~1.26.0: 1489 | version "1.26.0" 1490 | resolved "https://appier.us:4873/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1491 | 1492 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 1493 | version "2.1.14" 1494 | resolved "https://appier.us:4873/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1495 | dependencies: 1496 | mime-db "~1.26.0" 1497 | 1498 | mime@1.3.4: 1499 | version "1.3.4" 1500 | resolved "https://appier.us:4873/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1501 | 1502 | minimatch@^3.0.0, minimatch@^3.0.2: 1503 | version "3.0.3" 1504 | resolved "https://appier.us:4873/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1505 | dependencies: 1506 | brace-expansion "^1.0.0" 1507 | 1508 | minimist@0.0.8: 1509 | version "0.0.8" 1510 | resolved "https://appier.us:4873/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1511 | 1512 | minimist@^1.2.0: 1513 | version "1.2.0" 1514 | resolved "https://appier.us:4873/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1515 | 1516 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 1517 | version "0.5.1" 1518 | resolved "https://appier.us:4873/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1519 | dependencies: 1520 | minimist "0.0.8" 1521 | 1522 | ms@0.7.1: 1523 | version "0.7.1" 1524 | resolved "https://appier.us:4873/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1525 | 1526 | ms@0.7.2: 1527 | version "0.7.2" 1528 | resolved "https://appier.us:4873/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1529 | 1530 | nan@^2.3.0: 1531 | version "2.5.1" 1532 | resolved "https://appier.us:4873/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 1533 | 1534 | negotiator@0.6.1: 1535 | version "0.6.1" 1536 | resolved "https://appier.us:4873/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1537 | 1538 | nested-error-stacks@^1.0.0: 1539 | version "1.0.2" 1540 | resolved "https://appier.us:4873/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 1541 | dependencies: 1542 | inherits "~2.0.1" 1543 | 1544 | node-pre-gyp@^0.6.29: 1545 | version "0.6.32" 1546 | resolved "https://appier.us:4873/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 1547 | dependencies: 1548 | mkdirp "~0.5.1" 1549 | nopt "~3.0.6" 1550 | npmlog "^4.0.1" 1551 | rc "~1.1.6" 1552 | request "^2.79.0" 1553 | rimraf "~2.5.4" 1554 | semver "~5.3.0" 1555 | tar "~2.2.1" 1556 | tar-pack "~3.3.0" 1557 | 1558 | nodemon@^1.9.1: 1559 | version "1.11.0" 1560 | resolved "https://appier.us:4873/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 1561 | dependencies: 1562 | chokidar "^1.4.3" 1563 | debug "^2.2.0" 1564 | es6-promise "^3.0.2" 1565 | ignore-by-default "^1.0.0" 1566 | lodash.defaults "^3.1.2" 1567 | minimatch "^3.0.0" 1568 | ps-tree "^1.0.1" 1569 | touch "1.0.0" 1570 | undefsafe "0.0.3" 1571 | update-notifier "0.5.0" 1572 | 1573 | nopt@~1.0.10: 1574 | version "1.0.10" 1575 | resolved "https://appier.us:4873/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1576 | dependencies: 1577 | abbrev "1" 1578 | 1579 | nopt@~3.0.6: 1580 | version "3.0.6" 1581 | resolved "https://appier.us:4873/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1582 | dependencies: 1583 | abbrev "1" 1584 | 1585 | normalize-path@^2.0.1: 1586 | version "2.0.1" 1587 | resolved "https://appier.us:4873/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1588 | 1589 | npmlog@^4.0.1: 1590 | version "4.0.2" 1591 | resolved "https://appier.us:4873/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1592 | dependencies: 1593 | are-we-there-yet "~1.1.2" 1594 | console-control-strings "~1.1.0" 1595 | gauge "~2.7.1" 1596 | set-blocking "~2.0.0" 1597 | 1598 | number-is-nan@^1.0.0: 1599 | version "1.0.1" 1600 | resolved "https://appier.us:4873/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1601 | 1602 | oauth-sign@~0.8.1: 1603 | version "0.8.2" 1604 | resolved "https://appier.us:4873/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1605 | 1606 | object-assign@^3.0.0: 1607 | version "3.0.0" 1608 | resolved "https://appier.us:4873/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1609 | 1610 | object-assign@^4.0.1, object-assign@^4.1.0: 1611 | version "4.1.1" 1612 | resolved "https://appier.us:4873/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1613 | 1614 | object.omit@^2.0.0: 1615 | version "2.0.1" 1616 | resolved "https://appier.us:4873/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1617 | dependencies: 1618 | for-own "^0.1.4" 1619 | is-extendable "^0.1.1" 1620 | 1621 | on-finished@~2.3.0: 1622 | version "2.3.0" 1623 | resolved "https://appier.us:4873/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1624 | dependencies: 1625 | ee-first "1.1.1" 1626 | 1627 | on-headers@~1.0.1: 1628 | version "1.0.1" 1629 | resolved "https://appier.us:4873/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1630 | 1631 | once@^1.3.0: 1632 | version "1.4.0" 1633 | resolved "https://appier.us:4873/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1634 | dependencies: 1635 | wrappy "1" 1636 | 1637 | once@~1.3.0, once@~1.3.3: 1638 | version "1.3.3" 1639 | resolved "https://appier.us:4873/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1640 | dependencies: 1641 | wrappy "1" 1642 | 1643 | os-homedir@^1.0.0: 1644 | version "1.0.2" 1645 | resolved "https://appier.us:4873/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1646 | 1647 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1648 | version "1.0.2" 1649 | resolved "https://appier.us:4873/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1650 | 1651 | osenv@^0.1.0: 1652 | version "0.1.4" 1653 | resolved "https://appier.us:4873/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1654 | dependencies: 1655 | os-homedir "^1.0.0" 1656 | os-tmpdir "^1.0.0" 1657 | 1658 | output-file-sync@^1.1.0: 1659 | version "1.1.2" 1660 | resolved "https://appier.us:4873/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1661 | dependencies: 1662 | graceful-fs "^4.1.4" 1663 | mkdirp "^0.5.1" 1664 | object-assign "^4.1.0" 1665 | 1666 | package-json@^1.0.0: 1667 | version "1.2.0" 1668 | resolved "https://appier.us:4873/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 1669 | dependencies: 1670 | got "^3.2.0" 1671 | registry-url "^3.0.0" 1672 | 1673 | parse-glob@^3.0.4: 1674 | version "3.0.4" 1675 | resolved "https://appier.us:4873/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1676 | dependencies: 1677 | glob-base "^0.3.0" 1678 | is-dotfile "^1.0.0" 1679 | is-extglob "^1.0.0" 1680 | is-glob "^2.0.0" 1681 | 1682 | parseurl@~1.3.1: 1683 | version "1.3.1" 1684 | resolved "https://appier.us:4873/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1685 | 1686 | path-is-absolute@^1.0.0: 1687 | version "1.0.1" 1688 | resolved "https://appier.us:4873/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1689 | 1690 | path-to-regexp@0.1.7: 1691 | version "0.1.7" 1692 | resolved "https://appier.us:4873/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1693 | 1694 | pause-stream@0.0.11: 1695 | version "0.0.11" 1696 | resolved "https://appier.us:4873/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1697 | dependencies: 1698 | through "~2.3" 1699 | 1700 | pinkie-promise@^2.0.0: 1701 | version "2.0.1" 1702 | resolved "https://appier.us:4873/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1703 | dependencies: 1704 | pinkie "^2.0.0" 1705 | 1706 | pinkie@^2.0.0: 1707 | version "2.0.4" 1708 | resolved "https://appier.us:4873/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1709 | 1710 | prepend-http@^1.0.0: 1711 | version "1.0.4" 1712 | resolved "https://appier.us:4873/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1713 | 1714 | preserve@^0.2.0: 1715 | version "0.2.0" 1716 | resolved "https://appier.us:4873/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1717 | 1718 | private@^0.1.6: 1719 | version "0.1.6" 1720 | resolved "https://appier.us:4873/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1721 | 1722 | process-nextick-args@~1.0.6: 1723 | version "1.0.7" 1724 | resolved "https://appier.us:4873/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1725 | 1726 | proxy-addr@~1.1.2: 1727 | version "1.1.3" 1728 | resolved "https://appier.us:4873/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 1729 | dependencies: 1730 | forwarded "~0.1.0" 1731 | ipaddr.js "1.2.0" 1732 | 1733 | ps-tree@^1.0.1: 1734 | version "1.1.0" 1735 | resolved "https://appier.us:4873/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1736 | dependencies: 1737 | event-stream "~3.3.0" 1738 | 1739 | punycode@^1.4.1: 1740 | version "1.4.1" 1741 | resolved "https://appier.us:4873/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1742 | 1743 | qs@6.2.0: 1744 | version "6.2.0" 1745 | resolved "https://appier.us:4873/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 1746 | 1747 | qs@6.2.1: 1748 | version "6.2.1" 1749 | resolved "https://appier.us:4873/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 1750 | 1751 | qs@~6.3.0: 1752 | version "6.3.0" 1753 | resolved "https://appier.us:4873/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1754 | 1755 | random-bytes@~1.0.0: 1756 | version "1.0.0" 1757 | resolved "https://appier.us:4873/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 1758 | 1759 | randomatic@^1.1.3: 1760 | version "1.1.6" 1761 | resolved "https://appier.us:4873/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1762 | dependencies: 1763 | is-number "^2.0.2" 1764 | kind-of "^3.0.2" 1765 | 1766 | range-parser@~1.2.0: 1767 | version "1.2.0" 1768 | resolved "https://appier.us:4873/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 1769 | 1770 | raw-body@^2.1.0, raw-body@~2.2.0: 1771 | version "2.2.0" 1772 | resolved "https://appier.us:4873/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 1773 | dependencies: 1774 | bytes "2.4.0" 1775 | iconv-lite "0.4.15" 1776 | unpipe "1.0.0" 1777 | 1778 | rc@^1.0.1, rc@~1.1.6: 1779 | version "1.1.6" 1780 | resolved "https://appier.us:4873/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1781 | dependencies: 1782 | deep-extend "~0.4.0" 1783 | ini "~1.3.0" 1784 | minimist "^1.2.0" 1785 | strip-json-comments "~1.0.4" 1786 | 1787 | read-all-stream@^3.0.0: 1788 | version "3.1.0" 1789 | resolved "https://appier.us:4873/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 1790 | dependencies: 1791 | pinkie-promise "^2.0.0" 1792 | readable-stream "^2.0.0" 1793 | 1794 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: 1795 | version "2.2.2" 1796 | resolved "https://appier.us:4873/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1797 | dependencies: 1798 | buffer-shims "^1.0.0" 1799 | core-util-is "~1.0.0" 1800 | inherits "~2.0.1" 1801 | isarray "~1.0.0" 1802 | process-nextick-args "~1.0.6" 1803 | string_decoder "~0.10.x" 1804 | util-deprecate "~1.0.1" 1805 | 1806 | readable-stream@~2.1.4: 1807 | version "2.1.5" 1808 | resolved "https://appier.us:4873/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1809 | dependencies: 1810 | buffer-shims "^1.0.0" 1811 | core-util-is "~1.0.0" 1812 | inherits "~2.0.1" 1813 | isarray "~1.0.0" 1814 | process-nextick-args "~1.0.6" 1815 | string_decoder "~0.10.x" 1816 | util-deprecate "~1.0.1" 1817 | 1818 | readdirp@^2.0.0: 1819 | version "2.1.0" 1820 | resolved "https://appier.us:4873/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1821 | dependencies: 1822 | graceful-fs "^4.1.2" 1823 | minimatch "^3.0.2" 1824 | readable-stream "^2.0.2" 1825 | set-immediate-shim "^1.0.1" 1826 | 1827 | regenerate@^1.2.1: 1828 | version "1.3.2" 1829 | resolved "https://appier.us:4873/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1830 | 1831 | regenerator-runtime@^0.10.0: 1832 | version "0.10.1" 1833 | resolved "https://appier.us:4873/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1834 | 1835 | regex-cache@^0.4.2: 1836 | version "0.4.3" 1837 | resolved "https://appier.us:4873/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1838 | dependencies: 1839 | is-equal-shallow "^0.1.3" 1840 | is-primitive "^2.0.0" 1841 | 1842 | regexpu-core@^2.0.0: 1843 | version "2.0.0" 1844 | resolved "https://appier.us:4873/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1845 | dependencies: 1846 | regenerate "^1.2.1" 1847 | regjsgen "^0.2.0" 1848 | regjsparser "^0.1.4" 1849 | 1850 | registry-url@^3.0.0: 1851 | version "3.1.0" 1852 | resolved "https://appier.us:4873/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1853 | dependencies: 1854 | rc "^1.0.1" 1855 | 1856 | regjsgen@^0.2.0: 1857 | version "0.2.0" 1858 | resolved "https://appier.us:4873/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1859 | 1860 | regjsparser@^0.1.4: 1861 | version "0.1.5" 1862 | resolved "https://appier.us:4873/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1863 | dependencies: 1864 | jsesc "~0.5.0" 1865 | 1866 | repeat-element@^1.1.2: 1867 | version "1.1.2" 1868 | resolved "https://appier.us:4873/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1869 | 1870 | repeat-string@^1.5.2: 1871 | version "1.6.1" 1872 | resolved "https://appier.us:4873/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1873 | 1874 | repeating@^1.1.2: 1875 | version "1.1.3" 1876 | resolved "https://appier.us:4873/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 1877 | dependencies: 1878 | is-finite "^1.0.0" 1879 | 1880 | repeating@^2.0.0: 1881 | version "2.0.1" 1882 | resolved "https://appier.us:4873/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1883 | dependencies: 1884 | is-finite "^1.0.0" 1885 | 1886 | request@^2.79.0: 1887 | version "2.79.0" 1888 | resolved "https://appier.us:4873/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1889 | dependencies: 1890 | aws-sign2 "~0.6.0" 1891 | aws4 "^1.2.1" 1892 | caseless "~0.11.0" 1893 | combined-stream "~1.0.5" 1894 | extend "~3.0.0" 1895 | forever-agent "~0.6.1" 1896 | form-data "~2.1.1" 1897 | har-validator "~2.0.6" 1898 | hawk "~3.1.3" 1899 | http-signature "~1.1.0" 1900 | is-typedarray "~1.0.0" 1901 | isstream "~0.1.2" 1902 | json-stringify-safe "~5.0.1" 1903 | mime-types "~2.1.7" 1904 | oauth-sign "~0.8.1" 1905 | qs "~6.3.0" 1906 | stringstream "~0.0.4" 1907 | tough-cookie "~2.3.0" 1908 | tunnel-agent "~0.4.1" 1909 | uuid "^3.0.0" 1910 | 1911 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 1912 | version "2.5.4" 1913 | resolved "https://appier.us:4873/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1914 | dependencies: 1915 | glob "^7.0.5" 1916 | 1917 | semver-diff@^2.0.0: 1918 | version "2.1.0" 1919 | resolved "https://appier.us:4873/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1920 | dependencies: 1921 | semver "^5.0.3" 1922 | 1923 | semver@^5.0.3, semver@~5.3.0: 1924 | version "5.3.0" 1925 | resolved "https://appier.us:4873/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1926 | 1927 | send@0.14.1: 1928 | version "0.14.1" 1929 | resolved "https://appier.us:4873/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 1930 | dependencies: 1931 | debug "~2.2.0" 1932 | depd "~1.1.0" 1933 | destroy "~1.0.4" 1934 | encodeurl "~1.0.1" 1935 | escape-html "~1.0.3" 1936 | etag "~1.7.0" 1937 | fresh "0.3.0" 1938 | http-errors "~1.5.0" 1939 | mime "1.3.4" 1940 | ms "0.7.1" 1941 | on-finished "~2.3.0" 1942 | range-parser "~1.2.0" 1943 | statuses "~1.3.0" 1944 | 1945 | send@0.14.2: 1946 | version "0.14.2" 1947 | resolved "https://appier.us:4873/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 1948 | dependencies: 1949 | debug "~2.2.0" 1950 | depd "~1.1.0" 1951 | destroy "~1.0.4" 1952 | encodeurl "~1.0.1" 1953 | escape-html "~1.0.3" 1954 | etag "~1.7.0" 1955 | fresh "0.3.0" 1956 | http-errors "~1.5.1" 1957 | mime "1.3.4" 1958 | ms "0.7.2" 1959 | on-finished "~2.3.0" 1960 | range-parser "~1.2.0" 1961 | statuses "~1.3.1" 1962 | 1963 | serve-static@~1.11.1: 1964 | version "1.11.2" 1965 | resolved "https://appier.us:4873/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 1966 | dependencies: 1967 | encodeurl "~1.0.1" 1968 | escape-html "~1.0.3" 1969 | parseurl "~1.3.1" 1970 | send "0.14.2" 1971 | 1972 | set-blocking@~2.0.0: 1973 | version "2.0.0" 1974 | resolved "https://appier.us:4873/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1975 | 1976 | set-immediate-shim@^1.0.1: 1977 | version "1.0.1" 1978 | resolved "https://appier.us:4873/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1979 | 1980 | setprototypeof@1.0.2: 1981 | version "1.0.2" 1982 | resolved "https://appier.us:4873/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 1983 | 1984 | signal-exit@^3.0.0: 1985 | version "3.0.2" 1986 | resolved "https://appier.us:4873/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1987 | 1988 | slash@^1.0.0: 1989 | version "1.0.0" 1990 | resolved "https://appier.us:4873/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1991 | 1992 | slide@^1.1.5: 1993 | version "1.1.6" 1994 | resolved "https://appier.us:4873/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 1995 | 1996 | sntp@1.x.x: 1997 | version "1.0.9" 1998 | resolved "https://appier.us:4873/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1999 | dependencies: 2000 | hoek "2.x.x" 2001 | 2002 | source-map-support@^0.4.2: 2003 | version "0.4.10" 2004 | resolved "https://appier.us:4873/source-map-support/-/source-map-support-0.4.10.tgz#d7b19038040a14c0837a18e630a196453952b378" 2005 | dependencies: 2006 | source-map "^0.5.3" 2007 | 2008 | source-map@^0.5.0, source-map@^0.5.3: 2009 | version "0.5.6" 2010 | resolved "https://appier.us:4873/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2011 | 2012 | split@0.3: 2013 | version "0.3.3" 2014 | resolved "https://appier.us:4873/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2015 | dependencies: 2016 | through "2" 2017 | 2018 | sshpk@^1.7.0: 2019 | version "1.10.2" 2020 | resolved "https://appier.us:4873/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 2021 | dependencies: 2022 | asn1 "~0.2.3" 2023 | assert-plus "^1.0.0" 2024 | dashdash "^1.12.0" 2025 | getpass "^0.1.1" 2026 | optionalDependencies: 2027 | bcrypt-pbkdf "^1.0.0" 2028 | ecc-jsbn "~0.1.1" 2029 | jodid25519 "^1.0.0" 2030 | jsbn "~0.1.0" 2031 | tweetnacl "~0.14.0" 2032 | 2033 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0, statuses@~1.3.1: 2034 | version "1.3.1" 2035 | resolved "https://appier.us:4873/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2036 | 2037 | stream-combiner@~0.0.4: 2038 | version "0.0.4" 2039 | resolved "https://appier.us:4873/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2040 | dependencies: 2041 | duplexer "~0.1.1" 2042 | 2043 | stream-shift@^1.0.0: 2044 | version "1.0.0" 2045 | resolved "https://appier.us:4873/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2046 | 2047 | string-length@^1.0.0: 2048 | version "1.0.1" 2049 | resolved "https://appier.us:4873/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2050 | dependencies: 2051 | strip-ansi "^3.0.0" 2052 | 2053 | string-width@^1.0.1: 2054 | version "1.0.2" 2055 | resolved "https://appier.us:4873/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2056 | dependencies: 2057 | code-point-at "^1.0.0" 2058 | is-fullwidth-code-point "^1.0.0" 2059 | strip-ansi "^3.0.0" 2060 | 2061 | string_decoder@~0.10.x: 2062 | version "0.10.31" 2063 | resolved "https://appier.us:4873/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2064 | 2065 | stringstream@~0.0.4: 2066 | version "0.0.5" 2067 | resolved "https://appier.us:4873/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2068 | 2069 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2070 | version "3.0.1" 2071 | resolved "https://appier.us:4873/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2072 | dependencies: 2073 | ansi-regex "^2.0.0" 2074 | 2075 | strip-json-comments@~1.0.4: 2076 | version "1.0.4" 2077 | resolved "https://appier.us:4873/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2078 | 2079 | supports-color@^0.2.0: 2080 | version "0.2.0" 2081 | resolved "https://appier.us:4873/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2082 | 2083 | supports-color@^2.0.0: 2084 | version "2.0.0" 2085 | resolved "https://appier.us:4873/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2086 | 2087 | tar-pack@~3.3.0: 2088 | version "3.3.0" 2089 | resolved "https://appier.us:4873/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2090 | dependencies: 2091 | debug "~2.2.0" 2092 | fstream "~1.0.10" 2093 | fstream-ignore "~1.0.5" 2094 | once "~1.3.3" 2095 | readable-stream "~2.1.4" 2096 | rimraf "~2.5.1" 2097 | tar "~2.2.1" 2098 | uid-number "~0.0.6" 2099 | 2100 | tar@~2.2.1: 2101 | version "2.2.1" 2102 | resolved "https://appier.us:4873/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2103 | dependencies: 2104 | block-stream "*" 2105 | fstream "^1.0.2" 2106 | inherits "2" 2107 | 2108 | through@2, through@~2.3, through@~2.3.1: 2109 | version "2.3.8" 2110 | resolved "https://appier.us:4873/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2111 | 2112 | timed-out@^2.0.0: 2113 | version "2.0.0" 2114 | resolved "https://appier.us:4873/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 2115 | 2116 | to-fast-properties@^1.0.1: 2117 | version "1.0.2" 2118 | resolved "https://appier.us:4873/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2119 | 2120 | touch@1.0.0: 2121 | version "1.0.0" 2122 | resolved "https://appier.us:4873/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 2123 | dependencies: 2124 | nopt "~1.0.10" 2125 | 2126 | tough-cookie@~2.3.0: 2127 | version "2.3.2" 2128 | resolved "https://appier.us:4873/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2129 | dependencies: 2130 | punycode "^1.4.1" 2131 | 2132 | tunnel-agent@~0.4.1: 2133 | version "0.4.3" 2134 | resolved "https://appier.us:4873/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2135 | 2136 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2137 | version "0.14.5" 2138 | resolved "https://appier.us:4873/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2139 | 2140 | type-is@~1.6.13, type-is@~1.6.14: 2141 | version "1.6.14" 2142 | resolved "https://appier.us:4873/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 2143 | dependencies: 2144 | media-typer "0.3.0" 2145 | mime-types "~2.1.13" 2146 | 2147 | uid-number@~0.0.6: 2148 | version "0.0.6" 2149 | resolved "https://appier.us:4873/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2150 | 2151 | uid-safe@~2.1.3: 2152 | version "2.1.3" 2153 | resolved "https://appier.us:4873/uid-safe/-/uid-safe-2.1.3.tgz#077e264a00b3187936b270bb7376a26473631071" 2154 | dependencies: 2155 | base64-url "1.3.3" 2156 | random-bytes "~1.0.0" 2157 | 2158 | undefsafe@0.0.3: 2159 | version "0.0.3" 2160 | resolved "https://appier.us:4873/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 2161 | 2162 | unpipe@1.0.0, unpipe@~1.0.0: 2163 | version "1.0.0" 2164 | resolved "https://appier.us:4873/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2165 | 2166 | update-notifier@0.5.0: 2167 | version "0.5.0" 2168 | resolved "https://appier.us:4873/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 2169 | dependencies: 2170 | chalk "^1.0.0" 2171 | configstore "^1.0.0" 2172 | is-npm "^1.0.0" 2173 | latest-version "^1.0.0" 2174 | repeating "^1.1.2" 2175 | semver-diff "^2.0.0" 2176 | string-length "^1.0.0" 2177 | 2178 | user-home@^1.1.1: 2179 | version "1.1.1" 2180 | resolved "https://appier.us:4873/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2181 | 2182 | util-deprecate@~1.0.1: 2183 | version "1.0.2" 2184 | resolved "https://appier.us:4873/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2185 | 2186 | utils-merge@1.0.0: 2187 | version "1.0.0" 2188 | resolved "https://appier.us:4873/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2189 | 2190 | uuid@^2.0.1: 2191 | version "2.0.3" 2192 | resolved "https://appier.us:4873/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2193 | 2194 | uuid@^3.0.0: 2195 | version "3.0.1" 2196 | resolved "https://appier.us:4873/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2197 | 2198 | v8flags@^2.0.10: 2199 | version "2.0.11" 2200 | resolved "https://appier.us:4873/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2201 | dependencies: 2202 | user-home "^1.1.1" 2203 | 2204 | vary@~1.1.0: 2205 | version "1.1.0" 2206 | resolved "https://appier.us:4873/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 2207 | 2208 | verror@1.3.6: 2209 | version "1.3.6" 2210 | resolved "https://appier.us:4873/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2211 | dependencies: 2212 | extsprintf "1.0.2" 2213 | 2214 | wide-align@^1.1.0: 2215 | version "1.1.0" 2216 | resolved "https://appier.us:4873/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2217 | dependencies: 2218 | string-width "^1.0.1" 2219 | 2220 | wrappy@1: 2221 | version "1.0.2" 2222 | resolved "https://appier.us:4873/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2223 | 2224 | write-file-atomic@^1.1.2: 2225 | version "1.3.1" 2226 | resolved "https://appier.us:4873/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 2227 | dependencies: 2228 | graceful-fs "^4.1.11" 2229 | imurmurhash "^0.1.4" 2230 | slide "^1.1.5" 2231 | 2232 | xdg-basedir@^2.0.0: 2233 | version "2.0.0" 2234 | resolved "https://appier.us:4873/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2235 | dependencies: 2236 | os-homedir "^1.0.0" 2237 | 2238 | xtend@^4.0.0: 2239 | version "4.0.1" 2240 | resolved "https://appier.us:4873/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2241 | --------------------------------------------------------------------------------