├── .eslintrc
├── .flowconfig
├── .gitignore
├── .nycrc
├── .travis.yml
├── CHANGELOG.md
├── README.md
├── northbrook.js
├── package.json
├── rollup.config.js
├── src
├── AssertionError.js
├── index.d.ts
├── index.js
└── index.js.flow
├── test
├── AssertionError-test.js
└── index-test.js
└── yarn.lock
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "parser": "babel-eslint",
3 | "extends": "standard"
4 | }
5 |
--------------------------------------------------------------------------------
/.flowconfig:
--------------------------------------------------------------------------------
1 | [ignore]
2 |
3 | [include]
4 | dist/.*\.flow
5 |
6 | [libs]
7 |
8 | [options]
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | node_modules/
3 | dist/
4 | .nyc_output/
5 | coverage/
6 | experiments/
7 | npm-debug.log
8 | yarn-error.log
9 |
--------------------------------------------------------------------------------
/.nycrc:
--------------------------------------------------------------------------------
1 | {
2 | "include": ["dist/*.js"],
3 | "lines": 100,
4 | "statements": 100,
5 | "functions": 100
6 | }
7 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | cache: yarn
4 | script: yarn ci
5 | node_js:
6 | - "7"
7 | - "6"
8 | - "4"
9 | env:
10 | - CXX=g++-4.8
11 | branches:
12 | only:
13 | - master
14 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # 3.4.0 (2017-01-30)
2 | ---
3 |
4 | ## Features
5 |
6 | - feat(where): Add where() to lift predicates into assertions (#10) [b1425774](/commits/b142577422d8d1191aae246e2d02f58795e00973)
7 |
8 | # 3.3.1 (2017-01-29)
9 | ---
10 |
11 | ## Bug Fixes
12 |
13 | - fix(rejects): Add types for rejects() (#9) [208ad5aa](/commits/208ad5aad5556bf9e571ca1dce1cd54d24524970)
14 |
15 | # 3.3.0 (2017-01-29)
16 | ---
17 |
18 | ## Features
19 |
20 | - feat(rejects): Add rejects, for verifying rejected promises (#8) [9e13c2d7](/commits/9e13c2d7f2d10f53a9a26c709dfa5b5519abe3fb)
21 |
22 | # 3.2.0 (2017-01-25)
23 | ---
24 |
25 | ## Features
26 |
27 | - feat(assert): Improve error messages using object-inspect and leading hints (#6) [24c0b4a0](/commits/24c0b4a0b58e70dc1313524064da817176026b3d)
28 | - feat(fail): Parameterize fail arg type, coerce to string internally [9ff47d2e](/commits/9ff47d2e5e975cf0181dfda6a2a498a29ad780ff)
29 |
30 | # 3.1.0 (2017-01-23)
31 | ---
32 |
33 | ## Features
34 |
35 | - feat(assert): Capture expected and actual values in AssertionError (#4) [aa0e43ff](/commits/aa0e43ffc17ecbeb7847e491722b83df66e8f951)
36 | - feat(throws): Add throws(), composable assertion that a function throws (#3) [56417411](/commits/5641741130e5a1b06bab17ed63ab15ff1909fe81)
37 |
38 | # 3.0.0 (2017-01-22)
39 | ---
40 |
41 | ## Breaking Changes
42 |
43 | 1. eq() now does value equivalence, rather than referential equality
44 | - feat(assert): Make eq() value equivalence, is() referential equality [e36f910f](/commits/e36f910fcb1572171e86cb4d85ca51764e186af7)
45 |
46 | # 1.0.0 (2017-01-20)
47 | ---
48 |
49 | ## Features
50 |
51 | - feat(assert): Simplify API, add TS defs, improve tests [d870af96](/commits/d870af96472700d220b1c7d453a36e40a8657118)
52 | - feat(test): Add nyc code coverage [05eb0f03](/commits/05eb0f03d7fb79adc8e99367a4d11a288d8f5bdb)
53 |
54 |
55 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # assert
2 |
3 | Composable, strongly typed, curried test assertions. Use with any test framework that understands assertions that throw, like [Mocha](https://mochajs.org).
4 |
5 | A few simple examples. See the [API docs](#API) for more.
6 |
7 | ```js
8 | import { eq, is, assert } from '@briancavalier/assert'
9 |
10 | // eq - value equality
11 | eq(1, 1) // simple values
12 | eq({ value: 'a' }, { value: 'a' }) // deep values
13 | Promise.resolve(1).then(eq(1)) // curried
14 |
15 | // is - reference equality
16 | const a = {}
17 | is(a, a) // same reference
18 | is({}, {}) // AssertionError: not same reference
19 | Promise.resolve(a).then(is(a)) // curried
20 |
21 | // assert - strictly boolean expression
22 | assert(true)
23 | assert(typeof 1 === 'number')
24 | assert(1) // AssertionError: not strictly true
25 | ```
26 |
27 | ## Get it
28 |
29 | ```sh
30 | npm install --save-dev @briancavalier/assert
31 | # or
32 | yarn add --dev @briancavalier/assert
33 | ```
34 |
35 | ## API
36 |
37 | All functions with arity > 1 are curried, and can be partially applied. This makes for compact and convenient assertions:
38 |
39 | ```js
40 | // Assert that a promise fulfills with 123 by
41 | // partially applying eq()
42 | const eq123 = eq(123)
43 | promise.then(eq123)
44 |
45 | // Or simply:
46 | promise.then(eq(123))
47 | ```
48 |
49 | ### eq :: a → a → a
50 |
51 | Assert _value equivalence_. Compares primitives by `===` and non-primitives (objects, arrays, etc) structurally. Returns the second arg if the two values are equivalent, otherwise throws AssertionError.
52 |
53 | ```js
54 | eq(1, 1) //> 1
55 | eq({ a: 'a' }, { a: 'a' }) //> { a: 'a' }
56 | eq([1, 2, 3], [1, 2, 3]) //> [1, 2, 3]
57 | eq([{ a: 'a' }, { b: 'b' }], [{ a: 'a' }, { b: 'b'}]) //> [{ a: 'a' }, { b: 'b'}]
58 |
59 | eq(2, 1) //> AssertionError
60 | eq([1, 2, 3], [1, 2]) //> AssertionError
61 | eq({ a: 'a' }, { a: 'b' }) //> AssertionError
62 | eq([{ a: 'a' }, { b: 'b' }], [{ a: 'a' }]) //> AssertionError
63 | ```
64 |
65 | ### is :: a → a → a
66 |
67 | Assert _referential equivalence_. Compares args by `===`. Returns the second arg if the two values are `===`, otherwise throws AssertionError.
68 |
69 | ```js
70 | is(1, 1) //> 1
71 |
72 | is(2, 1) //> AssertionError
73 | is({ a: 'a' }, { a: 'a' }) //> AssertionError
74 | is([1, 2, 3], [1, 2, 3]) //> AssertionError
75 | ```
76 |
77 | ### assert :: boolean → boolean
78 |
79 | Assert _strictly_ `true`. If so, return true, otherwise throws AssertionError.
80 |
81 | ```js
82 | assert(true) //> true
83 | assert(1 === 1) //> true
84 |
85 | assert(false) //> AssertionError
86 | assert(1 === '1') //> AssertionError
87 | assert(1) //> AssertionError (1 !== true)
88 | ```
89 |
90 | ### throws :: (Error e) ⇒ (() → *) → e
91 |
92 | Assert that a function throws. If so, return the thrown value, otherwise throw AssertionError.
93 |
94 | ```js
95 | throws(() => { throw new Error('oops') }) //> *returns* Error: oops
96 |
97 | throws(() => {}) //> *throws* AssertionError
98 | ```
99 |
100 | Make assertions on the thrown value via composition:
101 |
102 | ```js
103 | // Import your favorite function composition lib
104 | import { pipe } from 'ramda'
105 | import { is, throws } from '@briancavalier/assert'
106 |
107 | const expectedError = new Error('expected')
108 |
109 | const throwsExpected = pipe(throws, is(expectedError))
110 | throwsExpected(() => { throw expectedError }) //> returns expectedError
111 | throwsExpected(() => { throw new Error() }) //> throws AssertionError: not same reference
112 | ```
113 |
114 | ### rejects :: Promise e a → Promise (AssertionError a) e
115 |
116 | Assert that a promise rejects. in the same way `throws` "inverts" the throw/return outcome of a promise, `rejects` inverts the fate of a promise:
117 |
118 | - Given a promise that rejects with `e`, returns a promise that fulfills with `e`.
119 | - Given a promise that fulfills with `a`, returns a promise that rejects with an `AssertionError` whose `actual` value is `a`
120 |
121 | ```js
122 | rejects(Promise.reject(e)) // fulfilled: e
123 | rejects(Promise.resolve()) // rejected: AssertionError
124 | ```
125 |
126 | It's simple to verify rejected promises using a test framework that allows returning promises:
127 |
128 | ```js
129 | import { rejects, is } from '@briancavalier/assert'
130 |
131 | it('rejects', () => {
132 | return rejects(Promise.reject(new Error()))
133 | })
134 |
135 | // Combine with other assertions, like `is`, to verify
136 | // the rejection value. For example:
137 | it('rejects with expectedError', () => {
138 | const expectedError = new Error()
139 | const p = Promise.reject(expectedError)
140 | return rejects(p)
141 | .then(is(expectedError))
142 | })
143 | ```
144 |
145 | ### where :: (a → b → boolean) → a → b → b
146 |
147 | Assert that a binary predicate holds. Lift a binary predicate into an assertion, allowing you to create custom assertions.
148 |
149 | ```js
150 | const lessThan = (a, b) => b < a
151 | where(lessThan, 10, 9) //> 9
152 | where(lessThan, 10, 11) //> AssertionError
153 |
154 | // Partially apply to create custom assertions
155 | // Custom assertLessThan
156 | const assertLessThan = where(lessThan)
157 | assertLessThan(10, 9) //> 9
158 | assertLessThan(10, 11) //> AssertionError
159 | Promise.resolve(9).then(assertLessThan(10)) //> fulfilled: 9
160 | Promise.resolve(11).then(assertLessThan(10)) //> rejected: AssertionError
161 |
162 | // Custom assertInstanceOf
163 | const instanceOf = (a, b) => b instanceof a
164 | const assertInstanceOf = where(instanceOf)
165 |
166 | const t = new Thing()
167 | assertInstanceOf(Thing, t) //> t
168 | assertInstanceOf(Thing, {}) //> AssertionError
169 |
170 | // Further partially apply Constructor type to create
171 | // specific assertInstanceOfThing
172 | const assertInstanceOfThing = assertInstanceOf(Thing)
173 | assertInstanceOfThing(t) //> t
174 | assertInstanceOfThing({}) //> AssertionError
175 | ```
176 |
177 | ### fail :: a → void
178 |
179 | Throw an `AssertionError` with the provided message, which will be coerced to a string and used as the error message. Useful for implementing new assertions.
180 |
181 | ```js
182 | fail('FAIL') //> AssertionError: FAIL
183 | ```
184 |
185 | ### AssertionError
186 |
187 | Assertions throw AssertionError to indicate failure. Typically, you should use `fail` instead of constructing an `AssertionError` directly.
188 |
189 | ```js
190 | const e = new AssertionError('FAIL', expected, actual)
191 | ```
192 |
--------------------------------------------------------------------------------
/northbrook.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | eslint: {
3 | directories: ['src', 'test', '*.js']
4 | },
5 | mocha: {
6 | patterns: [
7 | 'test/**/*-test.js'
8 | ]
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@briancavalier/assert",
3 | "version": "3.4.0",
4 | "description": "Simple, fast, curried test assertions",
5 | "author": "brian@hovercraftstudios.com",
6 | "license": "MIT",
7 | "main": "dist/index.js",
8 | "module": "dist/index.es.js",
9 | "jsnext:main": "dist/index.es.js",
10 | "files": [
11 | "type-definitions",
12 | "dist"
13 | ],
14 | "scripts": {
15 | "commit": "northbrook commit",
16 | "test": "npm run test:lint && npm run test:unit && npm run test:flow",
17 | "test:unit": "nyc -s northbrook mocha",
18 | "test:lint": "northbrook eslint",
19 | "test:flow": "flow check",
20 | "test:report": "nyc report",
21 | "ci": "npm run test:lint && npm run test:unit && npm run test:flow && npm run test:report",
22 | "build": "npm run build:dist && npm run build:flow && npm run build:ts",
23 | "build:dist": "northbrook rollup",
24 | "build:flow": "cpy src/index.js.flow dist && cpy src/index.js.flow dist --rename=index.es.js.flow",
25 | "build:ts": "cpy src/index.d.ts dist",
26 | "prepublish": "npm run build",
27 | "release": "northbrook release"
28 | },
29 | "repository": {
30 | "type": "git",
31 | "url": "https://github.com/briancavalier/assert"
32 | },
33 | "typings": "dist/index.d.ts",
34 | "devDependencies": {
35 | "@northbrook/eslint": "^2.0.1",
36 | "@northbrook/mocha": "^3.1.0",
37 | "@northbrook/rollup": "^1.0.1",
38 | "babel-eslint": "^7.1.1",
39 | "buba": "^4.0.2",
40 | "cpy-cli": "^1.0.1",
41 | "eslint-config-standard": "^6.2.1",
42 | "eslint-plugin-promise": "^3.4.0",
43 | "eslint-plugin-standard": "^2.0.1",
44 | "flow-bin": "^0.38.0",
45 | "northbrook": "^4.5.5",
46 | "nyc": "^10.1.2",
47 | "rollup": "^0.41.4",
48 | "rollup-plugin-buble": "^0.15.0",
49 | "rollup-plugin-commonjs": "^7.0.0",
50 | "rollup-plugin-node-resolve": "^2.0.0"
51 | },
52 | "dependencies": {
53 | "@most/prelude": "^1.5.0",
54 | "lodash.isequal": "^4.5.0",
55 | "object-inspect": "^1.2.1"
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import buble from 'rollup-plugin-buble'
2 | import nodeResolve from 'rollup-plugin-node-resolve'
3 | import commonjs from 'rollup-plugin-commonjs'
4 |
5 | export default {
6 | entry: 'src/index.js',
7 | plugins: [
8 | buble(),
9 | commonjs(),
10 | nodeResolve({
11 | jsnext: true
12 | })
13 | ],
14 | targets: [
15 | {
16 | dest: 'dist/index.js',
17 | format: 'umd',
18 | moduleName: 'assert',
19 | sourceMap: true
20 | },
21 | {
22 | dest: 'dist/index.es.js',
23 | format: 'es',
24 | sourceMap: true
25 | }
26 | ]
27 | }
28 |
--------------------------------------------------------------------------------
/src/AssertionError.js:
--------------------------------------------------------------------------------
1 | export class AssertionError extends Error {
2 | constructor (message, expected, actual, fn) {
3 | super(message)
4 | this.name = 'AssertionError'
5 | this.message = message
6 | this.expected = expected
7 | this.actual = actual
8 |
9 | /* istanbul ignore next */
10 | if (Error.captureStackTrace) {
11 | Error.captureStackTrace(this, typeof fn === 'function' ? fn : AssertionError)
12 | }
13 | }
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/src/index.d.ts:
--------------------------------------------------------------------------------
1 | export type Predicate2 = (a: A, b: B) => boolean
2 |
3 | export function where (p: Predicate2, a: A, b: B): B
4 | export function where (p: Predicate2): (a: A, b: B) => B
5 | export function where (p: Predicate2, a: A): (b: B) => B
6 | export function where (p: Predicate2): (a: A) => (b: B) => B
7 |
8 | export function eq (expected: A, actual: A): A
9 | export function eq (expected: A): (actual: A) => A
10 |
11 | export function is (expected: A, actual: A): A
12 | export function is (expected: A): (actual: A) => A
13 |
14 | export function assert (b: boolean): boolean
15 |
16 | export function throws (f: () => any): E
17 |
18 | export function rejects (p: Promise): Promise
19 |
20 | export function fail (message: A): never
21 |
22 | export class AssertionError extends Error {
23 | constructor (message: string, expected?: A, actual?: B, fn?: Function)
24 | }
25 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import { curry4, id } from '@most/prelude'
2 | import { AssertionError } from './AssertionError'
3 | import isEqual from 'lodash.isequal'
4 | import inspect from 'object-inspect'
5 | export { AssertionError }
6 |
7 | // Base assertion function. Lifts a failure message and binary
8 | // predicate to an assertion.
9 | const _where = curry4((m, p2, a, b) =>
10 | p2(a, b) === true ? b
11 | : fail2(`${m}${inspectPredicate(p2)}(${inspect2(a, b)})`, a, b))
12 |
13 | // References comparison helper
14 | const sameRef = (a, b) => a === b
15 |
16 | // Assert a binary predicate holds
17 | // Given a predicate p, return an assertion that passes if
18 | // p(a, b) holds, and throws AssertionError otherwise
19 | export const where = _where('failed: ')
20 |
21 | // Value equality: assert structural equivalence
22 | // If so, return actual, otherwise throw AssertionError
23 | export const eq = _where('not equal: ', isEqual)
24 |
25 | // Referential equality: assert expected === actual.
26 | // If so, return actual, otherwise throw AssertionError
27 | export const is = _where('not same reference: ', sameRef)
28 |
29 | // Assert b is true.
30 | // If so, return b, otherwise throw AssertionError
31 | export const assert = _where('not true: ', sameRef, true)
32 |
33 | // Assert f throws. If so, return the thrown value,
34 | // otherwise throw AssertionError.
35 | export const throws = f => {
36 | let x
37 | try {
38 | x = f()
39 | } catch (e) {
40 | return e
41 | }
42 | fail1(`did not throw, returned: ${inspect(x)}`, x)
43 | }
44 |
45 | // Assert p rejects. Return a promise that rejects if p fulfills,
46 | // and fulfills with p rejects.
47 | export const rejects = p =>
48 | p.then(failRejects, id)
49 |
50 | // Throw an assertion error that describes a rejects failure
51 | const failRejects = x =>
52 | failAt(rejects, `did not reject, fulfilled: ${inspect(x)}`, undefined, x)
53 |
54 | // Throw an AssertionError with the provided value, which
55 | // will be coerced to a string and used as the failure message.
56 | export const fail = a =>
57 | failAt(fail, String(a), undefined, a)
58 |
59 | // Throw an AssertionError with the provided message, expected,
60 | // and actual values.
61 | const fail1 = (message, actual) =>
62 | failAt(fail1, message, undefined, actual)
63 |
64 | // Throw an AssertionError with the provided message, expected,
65 | // and actual values.
66 | const fail2 = (message, expected, actual) =>
67 | failAt(fail2, message, expected, actual)
68 |
69 | // Throw an AssertionError with the provided message.
70 | // On v8, the call stack will be trimmed at the provided
71 | // function.
72 | export const failAt = (fn, message, expected, actual) => {
73 | throw new AssertionError(message, expected, actual, fn)
74 | }
75 |
76 | // Inspect both values and join into string
77 | const inspect2 = (a, b) => `${inspect(a)}, ${inspect(b)}`
78 |
79 | // Try not very hard to return a string representing a predicate
80 | const inspectPredicate = f => f === sameRef ? 'is' : f === isEqual ? 'eq' : f.name || ''
81 |
--------------------------------------------------------------------------------
/src/index.js.flow:
--------------------------------------------------------------------------------
1 | // @flow
2 | export type Predicate2 = (A, B) => boolean
3 |
4 | declare export function where (p: Predicate2, a: A, b: B): B
5 | declare export function where (p: Predicate2): (A, B) => B
6 | declare export function where (p: Predicate2, a: A): (B) => B
7 | declare export function where (p: Predicate2): (A) => (B) => B
8 |
9 | declare export function eq (expected: A, actual: A): A
10 | declare export function eq (expected: A): (actual: A) => A
11 |
12 | declare export function is (expected: A, actual: A): A
13 | declare export function is (expected: A): (actual: A) => A
14 |
15 | declare export function assert (b: boolean): boolean
16 |
17 | declare export function throws (f: () => any): E
18 |
19 | declare export function rejects (p: Promise): Promise
20 |
21 | declare export function fail (message: A): void
22 |
23 | declare export class AssertionError {
24 | constructor (message: string, expected?: A, actual?: B, fn?: Function): this
25 | }
26 |
--------------------------------------------------------------------------------
/test/AssertionError-test.js:
--------------------------------------------------------------------------------
1 | import { describe, it } from 'mocha'
2 | import { eq, is, assert } from '../src/index'
3 | import { AssertionError } from '../src/AssertionError'
4 |
5 | describe('AssertionError', () => {
6 | it('should be an Error', () => {
7 | assert(new AssertionError('') instanceof Error)
8 | })
9 |
10 | it('should have expected name', () => {
11 | eq('AssertionError', new AssertionError('').name)
12 | })
13 |
14 | it('should have expected message, expected, actual', () => {
15 | const message = `${Math.random()}`
16 | const expected = {}
17 | const actual = {}
18 |
19 | const e = new AssertionError(message, expected, actual)
20 |
21 | eq(message, e.message)
22 | is(expected, e.expected)
23 | is(actual, e.actual)
24 | })
25 | })
26 |
--------------------------------------------------------------------------------
/test/index-test.js:
--------------------------------------------------------------------------------
1 | import { describe, it } from 'mocha'
2 | import { where, eq, is, assert, throws, rejects, fail, failAt } from '../src/index'
3 | import { AssertionError } from '../src/AssertionError'
4 |
5 | describe('where', () => {
6 | it('should pass when predicate is true', () => {
7 | eq(1, where((a, b) => a === b, 1, 1))
8 | })
9 |
10 | it('should fail when predicate is false', () => {
11 | throwsAssertionError(where((a, b) => a === b, 1), 2)
12 | })
13 | })
14 |
15 | describe('eq', () => {
16 | it('should pass for equal primitives', () => {
17 | eq(1, eq(1, 1))
18 | eq(0, eq(0, 0))
19 | eq(-0, eq(-0, -0))
20 | eq(0, eq(-0, 0))
21 | eq('1', eq('1', '1'))
22 | eq(true, eq(true, true))
23 | eq(false, eq(false, false))
24 | })
25 |
26 | it('should fail for non-equal primitives', () => {
27 | throwsAssertionError(eq(1), 0)
28 | throwsAssertionError(eq('1'), '0')
29 | throwsAssertionError(eq(true), false)
30 | })
31 |
32 | const a1 = { value: 'a' }
33 | const a2 = { value: 'a' }
34 | const b = { value: 'b' }
35 | const c = {}
36 | const d = { value: 'd', extra: 'test' }
37 |
38 | it('should pass for equivalent objects', () => {
39 | eq(a1, eq(a1, a1))
40 | eq(a1, eq(a1, a2))
41 | eq(a1, eq(a1)(a2))
42 | })
43 |
44 | it('should fail for non-equivalent objects', () => {
45 | throwsAssertionError(eq(a1), b)
46 | throwsAssertionError(eq(a1), c)
47 | throwsAssertionError(eq(a1), d)
48 | })
49 | })
50 |
51 | describe('is', () => {
52 | const a = {}
53 |
54 | it('should pass for strictly equal', () => {
55 | is(a, is(a, a))
56 | is(a, is(a)(a))
57 | })
58 |
59 | it('should fail for not equal', () => {
60 | throwsAssertionError(is(1), 2)
61 | throwsAssertionError(is(1), '1')
62 | throwsAssertionError(is({}), {})
63 | })
64 | })
65 |
66 | describe('assert', () => {
67 | it('should pass for true', () => {
68 | assert(assert(true))
69 | })
70 |
71 | it('should fail for truthy', () => {
72 | throwsAssertionError(assert, 1)
73 | throwsAssertionError(assert, 'true')
74 | throwsAssertionError(assert, {})
75 | throwsAssertionError(assert, [])
76 | })
77 |
78 | it('should fail for false and falsy', () => {
79 | throwsAssertionError(assert, false)
80 | throwsAssertionError(assert, 0)
81 | throwsAssertionError(assert, '')
82 | throwsAssertionError(assert, null)
83 | throwsAssertionError(assert, undefined)
84 | })
85 | })
86 |
87 | describe('throws', () => {
88 | it('should pass when f throws', () => {
89 | const e = new Error()
90 | is(e, throws(() => { throw e }))
91 | })
92 |
93 | it('should fail when f returns', () => {
94 | throwsAssertionError(throws, () => {})
95 | })
96 | })
97 |
98 | describe('rejects', () => {
99 | it('should pass when p rejects', () => {
100 | const expected = new Error()
101 | return rejects(Promise.reject(expected))
102 | .then(is(expected))
103 | })
104 |
105 | it('should fail when p fulfills', () => {
106 | return rejects(rejects(Promise.resolve()))
107 | .then(e => assert(e instanceof AssertionError))
108 | })
109 | })
110 |
111 | describe('fail', () => {
112 | it('should fail with message', () => {
113 | const message = `${Math.random()}`
114 | try {
115 | fail(message)
116 | fail('Expected AssertionError')
117 | } catch (e) {
118 | assertIsAssertionError(e)
119 | eq(message, e.message)
120 | }
121 | })
122 | })
123 |
124 | describe('failAt', () => {
125 | it('should fail with message', () => {
126 | const message = `${Math.random()}`
127 | function test (message) {
128 | failAt(test, message)
129 | }
130 |
131 | try {
132 | test(message)
133 | fail('Expected AssertionError')
134 | } catch (e) {
135 | assertIsAssertionError(e)
136 | eq(message, e.message)
137 | }
138 | })
139 | })
140 |
141 | function assertIsAssertionError (e) {
142 | if (!(e instanceof AssertionError) || e.name !== 'AssertionError') {
143 | throw new AssertionError(`expected AssertionError, but threw: ${e.stack}`, assertIsAssertionError)
144 | }
145 |
146 | return e
147 | }
148 |
149 | function throwsAssertionError (f, a) {
150 | let r
151 | try {
152 | r = f(a)
153 | } catch (e) {
154 | assertIsAssertionError(e)
155 | return
156 | }
157 |
158 | throw new AssertionError(`expected AssertionError, but returned: ${r}`, throwsAssertionError)
159 | }
160 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@most/prelude@^1.5.0":
6 | version "1.5.0"
7 | resolved "https://registry.yarnpkg.com/@most/prelude/-/prelude-1.5.0.tgz#0c8ce09f305039d4055d3deb59c9e44cd337854d"
8 |
9 | "@northbrook/eslint@^2.0.1":
10 | version "2.0.1"
11 | resolved "https://registry.yarnpkg.com/@northbrook/eslint/-/eslint-2.0.1.tgz#472cd4a640fd429882ad6a632c961a32978d7c57"
12 | dependencies:
13 | eslint "^3.13.0"
14 | eslint-config-standard "^6.2.1"
15 | eslint-plugin-promise "^3.4.0"
16 | eslint-plugin-standard "^2.0.1"
17 | findup-sync "^0.4.3"
18 | northbrook "^4.3.5"
19 |
20 | "@northbrook/mocha@^3.1.0":
21 | version "3.1.0"
22 | resolved "https://registry.yarnpkg.com/@northbrook/mocha/-/mocha-3.1.0.tgz#63fea34f31f05dc2fa74d278368dc3784852526d"
23 | dependencies:
24 | "@typed/sequence" "^1.1.0"
25 | "@types/glob-expand" "0.0.30"
26 | "@types/mocha" "^2.2.34"
27 | "@types/node" "^6.0.52"
28 | buba "^4.0.1"
29 | glob-expand "^0.2.1"
30 | mocha "^3.2.0"
31 | northbrook "^4.3.5"
32 | simple-spinner "0.0.5"
33 | ts-node "^1.7.2"
34 |
35 | "@northbrook/rollup@^1.0.1":
36 | version "1.0.1"
37 | resolved "https://registry.yarnpkg.com/@northbrook/rollup/-/rollup-1.0.1.tgz#c1ec02ea76f706c66bab1b734706f87e2cd2aee7"
38 | dependencies:
39 | rollup "^0.41.1"
40 |
41 | "@typed/sequence@^1.1.0":
42 | version "1.1.0"
43 | resolved "https://registry.yarnpkg.com/@typed/sequence/-/sequence-1.1.0.tgz#7e84b267d602bb3d452d59b7ac9b55f9597a862f"
44 |
45 | "@types/findup-sync@^0.3.29":
46 | version "0.3.29"
47 | resolved "https://registry.yarnpkg.com/@types/findup-sync/-/findup-sync-0.3.29.tgz#ec0c80597e5ed157282207e762ca7254cad57632"
48 | dependencies:
49 | "@types/minimatch" "*"
50 |
51 | "@types/glob-expand@0.0.30":
52 | version "0.0.30"
53 | resolved "https://registry.yarnpkg.com/@types/glob-expand/-/glob-expand-0.0.30.tgz#7d1185a8607b693a2bb7414f1cf9ea1b8fd396d6"
54 | dependencies:
55 | "@types/glob" "*"
56 |
57 | "@types/glob@*":
58 | version "5.0.30"
59 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.30.tgz#1026409c5625a8689074602808d082b2867b8a51"
60 | dependencies:
61 | "@types/minimatch" "*"
62 | "@types/node" "*"
63 |
64 | "@types/minimatch@*":
65 | version "2.0.29"
66 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-2.0.29.tgz#5002e14f75e2d71e564281df0431c8c1b4a2a36a"
67 |
68 | "@types/minimist@^1.1.29":
69 | version "1.2.0"
70 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6"
71 |
72 | "@types/mkdirp@^0.3.29":
73 | version "0.3.29"
74 | resolved "https://registry.yarnpkg.com/@types/mkdirp/-/mkdirp-0.3.29.tgz#7f2ad7ec55f914482fc9b1ec4bb1ae6028d46066"
75 |
76 | "@types/mocha@^2.2.34":
77 | version "2.2.38"
78 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.38.tgz#8c188f6e34c2e7c3f1d0127d908d5a36e5a60dc9"
79 |
80 | "@types/node@*", "@types/node@^6.0.52":
81 | version "6.0.60"
82 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.60.tgz#e7e134ebc674ae6ed93c36c767739b110d2c57fc"
83 |
84 | "@types/ramda@0.0.2":
85 | version "0.0.2"
86 | resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.0.2.tgz#04e9b560b118eaf48542945ef9b2701c3f9832e3"
87 |
88 | "@types/rimraf@^0.0.28":
89 | version "0.0.28"
90 | resolved "https://registry.yarnpkg.com/@types/rimraf/-/rimraf-0.0.28.tgz#5562519bc7963caca8abf7f128cae3b594d41d06"
91 |
92 | "@types/semver@^5.3.30":
93 | version "5.3.30"
94 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-5.3.30.tgz#b55a3bd07b6b8b35f9d4472e1fc3318b68a493b2"
95 |
96 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1:
97 | version "3.0.1"
98 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
99 | dependencies:
100 | acorn "^3.0.4"
101 |
102 | acorn-object-spread@^1.0.0:
103 | version "1.0.0"
104 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68"
105 | dependencies:
106 | acorn "^3.1.0"
107 |
108 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0:
109 | version "3.3.0"
110 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
111 |
112 | acorn@^4.0.1:
113 | version "4.0.4"
114 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
115 |
116 | ajv-keywords@^1.0.0:
117 | version "1.5.0"
118 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.0.tgz#c11e6859eafff83e0dafc416929472eca946aa2c"
119 |
120 | ajv@^4.7.0:
121 | version "4.10.4"
122 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.4.tgz#c0974dd00b3464984892d6010aa9c2c945933254"
123 | dependencies:
124 | co "^4.6.0"
125 | json-stable-stringify "^1.0.1"
126 |
127 | align-text@^0.1.1, align-text@^0.1.3:
128 | version "0.1.4"
129 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
130 | dependencies:
131 | kind-of "^3.0.2"
132 | longest "^1.0.1"
133 | repeat-string "^1.5.2"
134 |
135 | amdefine@>=0.0.4:
136 | version "1.0.1"
137 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
138 |
139 | ansi-escapes@^1.1.0:
140 | version "1.4.0"
141 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
142 |
143 | ansi-regex@^2.0.0:
144 | version "2.1.1"
145 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
146 |
147 | ansi-styles@^2.2.1:
148 | version "2.2.1"
149 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
150 |
151 | ansi@^0.3.0:
152 | version "0.3.1"
153 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21"
154 |
155 | any-promise@^1.3.0:
156 | version "1.3.0"
157 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
158 |
159 | app-module-path@^2.1.0:
160 | version "2.2.0"
161 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5"
162 |
163 | append-transform@^0.4.0:
164 | version "0.4.0"
165 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
166 | dependencies:
167 | default-require-extensions "^1.0.0"
168 |
169 | archy@^1.0.0:
170 | version "1.0.0"
171 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
172 |
173 | argparse@^1.0.7:
174 | version "1.0.9"
175 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
176 | dependencies:
177 | sprintf-js "~1.0.2"
178 |
179 | arr-diff@^2.0.0:
180 | version "2.0.0"
181 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
182 | dependencies:
183 | arr-flatten "^1.0.1"
184 |
185 | arr-flatten@^1.0.1:
186 | version "1.0.1"
187 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
188 |
189 | array-find-index@^1.0.1:
190 | version "1.0.2"
191 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
192 |
193 | array-union@^1.0.1:
194 | version "1.0.2"
195 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
196 | dependencies:
197 | array-uniq "^1.0.1"
198 |
199 | array-uniq@^1.0.1:
200 | version "1.0.3"
201 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
202 |
203 | array-unique@^0.2.1:
204 | version "0.2.1"
205 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
206 |
207 | arrify@^1.0.0, arrify@^1.0.1:
208 | version "1.0.1"
209 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
210 |
211 | async@^1.4.0, async@^1.4.2:
212 | version "1.5.2"
213 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
214 |
215 | async@~0.2.6:
216 | version "0.2.10"
217 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
218 |
219 | babel-code-frame@^6.16.0, babel-code-frame@^6.20.0:
220 | version "6.20.0"
221 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26"
222 | dependencies:
223 | chalk "^1.1.0"
224 | esutils "^2.0.2"
225 | js-tokens "^2.0.0"
226 |
227 | babel-core@6.21.0, babel-core@^6.18.0:
228 | version "6.21.0"
229 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724"
230 | dependencies:
231 | babel-code-frame "^6.20.0"
232 | babel-generator "^6.21.0"
233 | babel-helpers "^6.16.0"
234 | babel-messages "^6.8.0"
235 | babel-register "^6.18.0"
236 | babel-runtime "^6.20.0"
237 | babel-template "^6.16.0"
238 | babel-traverse "^6.21.0"
239 | babel-types "^6.21.0"
240 | babylon "^6.11.0"
241 | convert-source-map "^1.1.0"
242 | debug "^2.1.1"
243 | json5 "^0.5.0"
244 | lodash "^4.2.0"
245 | minimatch "^3.0.2"
246 | path-is-absolute "^1.0.0"
247 | private "^0.1.6"
248 | slash "^1.0.0"
249 | source-map "^0.5.0"
250 |
251 | babel-eslint@^7.1.1:
252 | version "7.1.1"
253 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
254 | dependencies:
255 | babel-code-frame "^6.16.0"
256 | babel-traverse "^6.15.0"
257 | babel-types "^6.15.0"
258 | babylon "^6.13.0"
259 | lodash.pickby "^4.6.0"
260 |
261 | babel-generator@^6.18.0, babel-generator@^6.21.0:
262 | version "6.21.0"
263 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494"
264 | dependencies:
265 | babel-messages "^6.8.0"
266 | babel-runtime "^6.20.0"
267 | babel-types "^6.21.0"
268 | detect-indent "^4.0.0"
269 | jsesc "^1.3.0"
270 | lodash "^4.2.0"
271 | source-map "^0.5.0"
272 |
273 | babel-helpers@^6.16.0:
274 | version "6.16.0"
275 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3"
276 | dependencies:
277 | babel-runtime "^6.0.0"
278 | babel-template "^6.16.0"
279 |
280 | babel-messages@^6.8.0:
281 | version "6.8.0"
282 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
283 | dependencies:
284 | babel-runtime "^6.0.0"
285 |
286 | babel-plugin-transform-es2015-modules-commonjs@6.18.0:
287 | version "6.18.0"
288 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc"
289 | dependencies:
290 | babel-plugin-transform-strict-mode "^6.18.0"
291 | babel-runtime "^6.0.0"
292 | babel-template "^6.16.0"
293 | babel-types "^6.18.0"
294 |
295 | babel-plugin-transform-strict-mode@^6.18.0:
296 | version "6.18.0"
297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d"
298 | dependencies:
299 | babel-runtime "^6.0.0"
300 | babel-types "^6.18.0"
301 |
302 | babel-register@^6.18.0:
303 | version "6.18.0"
304 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68"
305 | dependencies:
306 | babel-core "^6.18.0"
307 | babel-runtime "^6.11.6"
308 | core-js "^2.4.0"
309 | home-or-tmp "^2.0.0"
310 | lodash "^4.2.0"
311 | mkdirp "^0.5.1"
312 | source-map-support "^0.4.2"
313 |
314 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.20.0, babel-runtime@^6.9.0:
315 | version "6.20.0"
316 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f"
317 | dependencies:
318 | core-js "^2.4.0"
319 | regenerator-runtime "^0.10.0"
320 |
321 | babel-template@^6.16.0:
322 | version "6.16.0"
323 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
324 | dependencies:
325 | babel-runtime "^6.9.0"
326 | babel-traverse "^6.16.0"
327 | babel-types "^6.16.0"
328 | babylon "^6.11.0"
329 | lodash "^4.2.0"
330 |
331 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.21.0:
332 | version "6.21.0"
333 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad"
334 | dependencies:
335 | babel-code-frame "^6.20.0"
336 | babel-messages "^6.8.0"
337 | babel-runtime "^6.20.0"
338 | babel-types "^6.21.0"
339 | babylon "^6.11.0"
340 | debug "^2.2.0"
341 | globals "^9.0.0"
342 | invariant "^2.2.0"
343 | lodash "^4.2.0"
344 |
345 | babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.21.0:
346 | version "6.21.0"
347 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2"
348 | dependencies:
349 | babel-runtime "^6.20.0"
350 | esutils "^2.0.2"
351 | lodash "^4.2.0"
352 | to-fast-properties "^1.0.1"
353 |
354 | babylon@^6.11.0, babylon@^6.13.0:
355 | version "6.15.0"
356 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e"
357 |
358 | balanced-match@^0.4.1:
359 | version "0.4.2"
360 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
361 |
362 | brace-expansion@^1.0.0:
363 | version "1.1.6"
364 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
365 | dependencies:
366 | balanced-match "^0.4.1"
367 | concat-map "0.0.1"
368 |
369 | braces@^1.8.2:
370 | version "1.8.5"
371 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
372 | dependencies:
373 | expand-range "^1.8.1"
374 | preserve "^0.2.0"
375 | repeat-element "^1.1.2"
376 |
377 | browser-resolve@^1.11.0:
378 | version "1.11.2"
379 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
380 | dependencies:
381 | resolve "1.1.7"
382 |
383 | browser-stdout@1.3.0:
384 | version "1.3.0"
385 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f"
386 |
387 | buba@^4.0.1, buba@^4.0.2:
388 | version "4.0.2"
389 | resolved "https://registry.yarnpkg.com/buba/-/buba-4.0.2.tgz#a0af6531de011523a4f046abf224b0806a039555"
390 | dependencies:
391 | babel-core "6.21.0"
392 | babel-plugin-transform-es2015-modules-commonjs "6.18.0"
393 | buble "0.15.2"
394 | commander "2.9.0"
395 | mkdirp "^0.5.1"
396 |
397 | buble@0.15.2, buble@^0.15.0:
398 | version "0.15.2"
399 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.2.tgz#547fc47483f8e5e8176d82aa5ebccb183b02d613"
400 | dependencies:
401 | acorn "^3.3.0"
402 | acorn-jsx "^3.0.1"
403 | acorn-object-spread "^1.0.0"
404 | chalk "^1.1.3"
405 | magic-string "^0.14.0"
406 | minimist "^1.2.0"
407 | os-homedir "^1.0.1"
408 |
409 | buffer-shims@^1.0.0:
410 | version "1.0.0"
411 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
412 |
413 | builtin-modules@^1.0.0, builtin-modules@^1.1.0:
414 | version "1.1.1"
415 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
416 |
417 | caching-transform@^1.0.0:
418 | version "1.0.1"
419 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1"
420 | dependencies:
421 | md5-hex "^1.2.0"
422 | mkdirp "^0.5.1"
423 | write-file-atomic "^1.1.4"
424 |
425 | caller-path@^0.1.0:
426 | version "0.1.0"
427 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
428 | dependencies:
429 | callsites "^0.2.0"
430 |
431 | callsites@^0.2.0:
432 | version "0.2.0"
433 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
434 |
435 | camelcase-keys@^2.0.0:
436 | version "2.1.0"
437 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
438 | dependencies:
439 | camelcase "^2.0.0"
440 | map-obj "^1.0.0"
441 |
442 | camelcase@^1.0.2:
443 | version "1.2.1"
444 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
445 |
446 | camelcase@^2.0.0:
447 | version "2.1.1"
448 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
449 |
450 | camelcase@^3.0.0:
451 | version "3.0.0"
452 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
453 |
454 | center-align@^0.1.1:
455 | version "0.1.3"
456 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
457 | dependencies:
458 | align-text "^0.1.3"
459 | lazy-cache "^1.0.3"
460 |
461 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
462 | version "1.1.3"
463 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
464 | dependencies:
465 | ansi-styles "^2.2.1"
466 | escape-string-regexp "^1.0.2"
467 | has-ansi "^2.0.0"
468 | strip-ansi "^3.0.0"
469 | supports-color "^2.0.0"
470 |
471 | circular-json@^0.3.1:
472 | version "0.3.1"
473 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
474 |
475 | cli-cursor@^1.0.1:
476 | version "1.0.2"
477 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
478 | dependencies:
479 | restore-cursor "^1.0.1"
480 |
481 | cli-width@^2.0.0:
482 | version "2.1.0"
483 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
484 |
485 | cliui@^2.1.0:
486 | version "2.1.0"
487 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
488 | dependencies:
489 | center-align "^0.1.1"
490 | right-align "^0.1.1"
491 | wordwrap "0.0.2"
492 |
493 | cliui@^3.2.0:
494 | version "3.2.0"
495 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
496 | dependencies:
497 | string-width "^1.0.1"
498 | strip-ansi "^3.0.1"
499 | wrap-ansi "^2.0.0"
500 |
501 | co@^4.6.0:
502 | version "4.6.0"
503 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
504 |
505 | code-point-at@^1.0.0:
506 | version "1.1.0"
507 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
508 |
509 | commander@2.9.0:
510 | version "2.9.0"
511 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
512 | dependencies:
513 | graceful-readlink ">= 1.0.0"
514 |
515 | commondir@^1.0.1:
516 | version "1.0.1"
517 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
518 |
519 | concat-map@0.0.1:
520 | version "0.0.1"
521 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
522 |
523 | concat-stream@^1.4.6, concat-stream@^1.4.7:
524 | version "1.6.0"
525 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
526 | dependencies:
527 | inherits "^2.0.3"
528 | readable-stream "^2.2.2"
529 | typedarray "^0.0.6"
530 |
531 | convert-source-map@^1.1.0, convert-source-map@^1.3.0:
532 | version "1.3.0"
533 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67"
534 |
535 | core-js@^2.4.0:
536 | version "2.4.1"
537 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
538 |
539 | core-util-is@~1.0.0:
540 | version "1.0.2"
541 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
542 |
543 | cp-file@^3.1.0:
544 | version "3.2.0"
545 | resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-3.2.0.tgz#6f83616254624f0ad58aa4aa8d076f026be7e188"
546 | dependencies:
547 | graceful-fs "^4.1.2"
548 | mkdirp "^0.5.0"
549 | nested-error-stacks "^1.0.1"
550 | object-assign "^4.0.1"
551 | pify "^2.3.0"
552 | pinkie-promise "^2.0.0"
553 | readable-stream "^2.1.4"
554 |
555 | cpy-cli@^1.0.1:
556 | version "1.0.1"
557 | resolved "https://registry.yarnpkg.com/cpy-cli/-/cpy-cli-1.0.1.tgz#67fb5a4a2dec28ca8abff375de4b9e71f6a7561c"
558 | dependencies:
559 | cpy "^4.0.0"
560 | meow "^3.6.0"
561 |
562 | cpy@^4.0.0:
563 | version "4.0.1"
564 | resolved "https://registry.yarnpkg.com/cpy/-/cpy-4.0.1.tgz#b67267eba2f3960ba06a5a61ac94033422833424"
565 | dependencies:
566 | cp-file "^3.1.0"
567 | globby "^4.0.0"
568 | meow "^3.6.0"
569 | nested-error-stacks "^1.0.0"
570 | object-assign "^4.0.1"
571 | pinkie-promise "^2.0.0"
572 |
573 | cross-spawn@^4:
574 | version "4.0.2"
575 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
576 | dependencies:
577 | lru-cache "^4.0.1"
578 | which "^1.2.9"
579 |
580 | currently-unhandled@^0.4.1:
581 | version "0.4.1"
582 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
583 | dependencies:
584 | array-find-index "^1.0.1"
585 |
586 | d@^0.1.1, d@~0.1.1:
587 | version "0.1.1"
588 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
589 | dependencies:
590 | es5-ext "~0.10.2"
591 |
592 | debug-log@^1.0.1:
593 | version "1.0.1"
594 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
595 |
596 | debug@2.2.0, debug@^2.1.1, debug@^2.2.0:
597 | version "2.2.0"
598 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
599 | dependencies:
600 | ms "0.7.1"
601 |
602 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
603 | version "1.2.0"
604 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
605 |
606 | deep-is@~0.1.3:
607 | version "0.1.3"
608 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
609 |
610 | default-require-extensions@^1.0.0:
611 | version "1.0.0"
612 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
613 | dependencies:
614 | strip-bom "^2.0.0"
615 |
616 | del@^2.0.2:
617 | version "2.2.2"
618 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
619 | dependencies:
620 | globby "^5.0.0"
621 | is-path-cwd "^1.0.0"
622 | is-path-in-cwd "^1.0.0"
623 | object-assign "^4.0.1"
624 | pify "^2.0.0"
625 | pinkie-promise "^2.0.0"
626 | rimraf "^2.2.8"
627 |
628 | dependency-graph@^0.5.0:
629 | version "0.5.0"
630 | resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.5.0.tgz#71edf7945dbba86c1b19ac982b6afb6476b56dd5"
631 |
632 | detect-file@^0.1.0:
633 | version "0.1.0"
634 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63"
635 | dependencies:
636 | fs-exists-sync "^0.1.0"
637 |
638 | detect-indent@^4.0.0:
639 | version "4.0.0"
640 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
641 | dependencies:
642 | repeating "^2.0.0"
643 |
644 | diff@1.4.0:
645 | version "1.4.0"
646 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"
647 |
648 | diff@^3.1.0:
649 | version "3.2.0"
650 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9"
651 |
652 | doctrine@^1.2.2:
653 | version "1.5.0"
654 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
655 | dependencies:
656 | esutils "^2.0.2"
657 | isarray "^1.0.0"
658 |
659 | error-ex@^1.2.0:
660 | version "1.3.0"
661 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
662 | dependencies:
663 | is-arrayish "^0.2.1"
664 |
665 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
666 | version "0.10.12"
667 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
668 | dependencies:
669 | es6-iterator "2"
670 | es6-symbol "~3.1"
671 |
672 | es6-iterator@2:
673 | version "2.0.0"
674 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
675 | dependencies:
676 | d "^0.1.1"
677 | es5-ext "^0.10.7"
678 | es6-symbol "3"
679 |
680 | es6-map@^0.1.3:
681 | version "0.1.4"
682 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
683 | dependencies:
684 | d "~0.1.1"
685 | es5-ext "~0.10.11"
686 | es6-iterator "2"
687 | es6-set "~0.1.3"
688 | es6-symbol "~3.1.0"
689 | event-emitter "~0.3.4"
690 |
691 | es6-set@~0.1.3:
692 | version "0.1.4"
693 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
694 | dependencies:
695 | d "~0.1.1"
696 | es5-ext "~0.10.11"
697 | es6-iterator "2"
698 | es6-symbol "3"
699 | event-emitter "~0.3.4"
700 |
701 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
702 | version "3.1.0"
703 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
704 | dependencies:
705 | d "~0.1.1"
706 | es5-ext "~0.10.11"
707 |
708 | es6-weak-map@^2.0.1:
709 | version "2.0.1"
710 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
711 | dependencies:
712 | d "^0.1.1"
713 | es5-ext "^0.10.8"
714 | es6-iterator "2"
715 | es6-symbol "3"
716 |
717 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
718 | version "1.0.5"
719 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
720 |
721 | escope@^3.6.0:
722 | version "3.6.0"
723 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
724 | dependencies:
725 | es6-map "^0.1.3"
726 | es6-weak-map "^2.0.1"
727 | esrecurse "^4.1.0"
728 | estraverse "^4.1.1"
729 |
730 | eslint-config-standard@^6.2.1:
731 | version "6.2.1"
732 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292"
733 |
734 | eslint-plugin-promise@^3.4.0:
735 | version "3.4.0"
736 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.0.tgz#6ba9048c2df57be77d036e0c68918bc9b4fc4195"
737 |
738 | eslint-plugin-standard@^2.0.1:
739 | version "2.0.1"
740 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3"
741 |
742 | eslint@^3.13.0:
743 | version "3.13.1"
744 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.13.1.tgz#564d2646b5efded85df96985332edd91a23bff25"
745 | dependencies:
746 | babel-code-frame "^6.16.0"
747 | chalk "^1.1.3"
748 | concat-stream "^1.4.6"
749 | debug "^2.1.1"
750 | doctrine "^1.2.2"
751 | escope "^3.6.0"
752 | espree "^3.3.1"
753 | estraverse "^4.2.0"
754 | esutils "^2.0.2"
755 | file-entry-cache "^2.0.0"
756 | glob "^7.0.3"
757 | globals "^9.14.0"
758 | ignore "^3.2.0"
759 | imurmurhash "^0.1.4"
760 | inquirer "^0.12.0"
761 | is-my-json-valid "^2.10.0"
762 | is-resolvable "^1.0.0"
763 | js-yaml "^3.5.1"
764 | json-stable-stringify "^1.0.0"
765 | levn "^0.3.0"
766 | lodash "^4.0.0"
767 | mkdirp "^0.5.0"
768 | natural-compare "^1.4.0"
769 | optionator "^0.8.2"
770 | path-is-inside "^1.0.1"
771 | pluralize "^1.2.1"
772 | progress "^1.1.8"
773 | require-uncached "^1.0.2"
774 | shelljs "^0.7.5"
775 | strip-bom "^3.0.0"
776 | strip-json-comments "~2.0.1"
777 | table "^3.7.8"
778 | text-table "~0.2.0"
779 | user-home "^2.0.0"
780 |
781 | espree@^3.3.1:
782 | version "3.3.2"
783 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c"
784 | dependencies:
785 | acorn "^4.0.1"
786 | acorn-jsx "^3.0.0"
787 |
788 | esprima@^2.6.0:
789 | version "2.7.3"
790 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
791 |
792 | esrecurse@^4.1.0:
793 | version "4.1.0"
794 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
795 | dependencies:
796 | estraverse "~4.1.0"
797 | object-assign "^4.0.1"
798 |
799 | estraverse@^4.1.1, estraverse@^4.2.0:
800 | version "4.2.0"
801 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
802 |
803 | estraverse@~4.1.0:
804 | version "4.1.1"
805 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
806 |
807 | estree-walker@^0.2.1:
808 | version "0.2.1"
809 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e"
810 |
811 | estree-walker@^0.3.0:
812 | version "0.3.0"
813 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.0.tgz#f67ca8f57b9ed66d886af816c099c779b315d4db"
814 |
815 | esutils@^2.0.2:
816 | version "2.0.2"
817 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
818 |
819 | event-emitter@~0.3.4:
820 | version "0.3.4"
821 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
822 | dependencies:
823 | d "~0.1.1"
824 | es5-ext "~0.10.7"
825 |
826 | exit-hook@^1.0.0:
827 | version "1.1.1"
828 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
829 |
830 | expand-brackets@^0.1.4:
831 | version "0.1.5"
832 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
833 | dependencies:
834 | is-posix-bracket "^0.1.0"
835 |
836 | expand-range@^1.8.1:
837 | version "1.8.2"
838 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
839 | dependencies:
840 | fill-range "^2.1.0"
841 |
842 | expand-tilde@^1.2.2:
843 | version "1.2.2"
844 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
845 | dependencies:
846 | os-homedir "^1.0.1"
847 |
848 | extend@^3.0.0:
849 | version "3.0.0"
850 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
851 |
852 | external-editor@^1.1.0:
853 | version "1.1.1"
854 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b"
855 | dependencies:
856 | extend "^3.0.0"
857 | spawn-sync "^1.0.15"
858 | tmp "^0.0.29"
859 |
860 | extglob@^0.3.1:
861 | version "0.3.2"
862 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
863 | dependencies:
864 | is-extglob "^1.0.0"
865 |
866 | fast-levenshtein@~2.0.4:
867 | version "2.0.6"
868 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
869 |
870 | figures@^1.3.5:
871 | version "1.7.0"
872 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
873 | dependencies:
874 | escape-string-regexp "^1.0.5"
875 | object-assign "^4.1.0"
876 |
877 | file-entry-cache@^2.0.0:
878 | version "2.0.0"
879 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
880 | dependencies:
881 | flat-cache "^1.2.1"
882 | object-assign "^4.0.1"
883 |
884 | filename-regex@^2.0.0:
885 | version "2.0.0"
886 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
887 |
888 | fill-range@^2.1.0:
889 | version "2.2.3"
890 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
891 | dependencies:
892 | is-number "^2.1.0"
893 | isobject "^2.0.0"
894 | randomatic "^1.1.3"
895 | repeat-element "^1.1.2"
896 | repeat-string "^1.5.2"
897 |
898 | find-cache-dir@^0.1.1:
899 | version "0.1.1"
900 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
901 | dependencies:
902 | commondir "^1.0.1"
903 | mkdirp "^0.5.1"
904 | pkg-dir "^1.0.0"
905 |
906 | find-up@^1.0.0, find-up@^1.1.2:
907 | version "1.1.2"
908 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
909 | dependencies:
910 | path-exists "^2.0.0"
911 | pinkie-promise "^2.0.0"
912 |
913 | findup-sync@^0.4.3:
914 | version "0.4.3"
915 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12"
916 | dependencies:
917 | detect-file "^0.1.0"
918 | is-glob "^2.0.1"
919 | micromatch "^2.3.7"
920 | resolve-dir "^0.1.0"
921 |
922 | flat-cache@^1.2.1:
923 | version "1.2.2"
924 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
925 | dependencies:
926 | circular-json "^0.3.1"
927 | del "^2.0.2"
928 | graceful-fs "^4.1.2"
929 | write "^0.2.1"
930 |
931 | flow-bin@^0.38.0:
932 | version "0.38.0"
933 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.38.0.tgz#3ae096d401c969cc8b5798253fb82381e2d0237a"
934 |
935 | for-in@^0.1.5:
936 | version "0.1.6"
937 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
938 |
939 | for-own@^0.1.4:
940 | version "0.1.4"
941 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
942 | dependencies:
943 | for-in "^0.1.5"
944 |
945 | foreground-child@^1.3.3, foreground-child@^1.5.3:
946 | version "1.5.6"
947 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9"
948 | dependencies:
949 | cross-spawn "^4"
950 | signal-exit "^3.0.0"
951 |
952 | fs-exists-sync@^0.1.0:
953 | version "0.1.0"
954 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
955 |
956 | fs.realpath@^1.0.0:
957 | version "1.0.0"
958 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
959 |
960 | generate-function@^2.0.0:
961 | version "2.0.0"
962 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
963 |
964 | generate-object-property@^1.1.0:
965 | version "1.2.0"
966 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
967 | dependencies:
968 | is-property "^1.0.0"
969 |
970 | get-caller-file@^1.0.1:
971 | version "1.0.2"
972 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
973 |
974 | get-stdin@^4.0.1:
975 | version "4.0.1"
976 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
977 |
978 | glob-base@^0.3.0:
979 | version "0.3.0"
980 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
981 | dependencies:
982 | glob-parent "^2.0.0"
983 | is-glob "^2.0.0"
984 |
985 | glob-expand@^0.2.1:
986 | version "0.2.1"
987 | resolved "https://registry.yarnpkg.com/glob-expand/-/glob-expand-0.2.1.tgz#1b088ac272b57158870b76816111da4618a66a0f"
988 | dependencies:
989 | glob "~4.5.x"
990 | lodash "~4.13.x"
991 |
992 | glob-parent@^2.0.0:
993 | version "2.0.0"
994 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
995 | dependencies:
996 | is-glob "^2.0.0"
997 |
998 | glob@7.0.5:
999 | version "7.0.5"
1000 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95"
1001 | dependencies:
1002 | fs.realpath "^1.0.0"
1003 | inflight "^1.0.4"
1004 | inherits "2"
1005 | minimatch "^3.0.2"
1006 | once "^1.3.0"
1007 | path-is-absolute "^1.0.0"
1008 |
1009 | glob@^6.0.1:
1010 | version "6.0.4"
1011 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"
1012 | dependencies:
1013 | inflight "^1.0.4"
1014 | inherits "2"
1015 | minimatch "2 || 3"
1016 | once "^1.3.0"
1017 | path-is-absolute "^1.0.0"
1018 |
1019 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6:
1020 | version "7.1.1"
1021 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1022 | dependencies:
1023 | fs.realpath "^1.0.0"
1024 | inflight "^1.0.4"
1025 | inherits "2"
1026 | minimatch "^3.0.2"
1027 | once "^1.3.0"
1028 | path-is-absolute "^1.0.0"
1029 |
1030 | glob@~4.5.x:
1031 | version "4.5.3"
1032 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f"
1033 | dependencies:
1034 | inflight "^1.0.4"
1035 | inherits "2"
1036 | minimatch "^2.0.1"
1037 | once "^1.3.0"
1038 |
1039 | global-modules@^0.2.3:
1040 | version "0.2.3"
1041 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"
1042 | dependencies:
1043 | global-prefix "^0.1.4"
1044 | is-windows "^0.2.0"
1045 |
1046 | global-prefix@^0.1.4:
1047 | version "0.1.5"
1048 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"
1049 | dependencies:
1050 | homedir-polyfill "^1.0.0"
1051 | ini "^1.3.4"
1052 | is-windows "^0.2.0"
1053 | which "^1.2.12"
1054 |
1055 | globals@^9.0.0, globals@^9.14.0:
1056 | version "9.14.0"
1057 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
1058 |
1059 | globby@^4.0.0:
1060 | version "4.1.0"
1061 | resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8"
1062 | dependencies:
1063 | array-union "^1.0.1"
1064 | arrify "^1.0.0"
1065 | glob "^6.0.1"
1066 | object-assign "^4.0.1"
1067 | pify "^2.0.0"
1068 | pinkie-promise "^2.0.0"
1069 |
1070 | globby@^5.0.0:
1071 | version "5.0.0"
1072 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1073 | dependencies:
1074 | array-union "^1.0.1"
1075 | arrify "^1.0.0"
1076 | glob "^7.0.3"
1077 | object-assign "^4.0.1"
1078 | pify "^2.0.0"
1079 | pinkie-promise "^2.0.0"
1080 |
1081 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1082 | version "4.1.11"
1083 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1084 |
1085 | "graceful-readlink@>= 1.0.0":
1086 | version "1.0.1"
1087 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1088 |
1089 | growl@1.9.2:
1090 | version "1.9.2"
1091 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f"
1092 |
1093 | handlebars@^4.0.3:
1094 | version "4.0.6"
1095 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7"
1096 | dependencies:
1097 | async "^1.4.0"
1098 | optimist "^0.6.1"
1099 | source-map "^0.4.4"
1100 | optionalDependencies:
1101 | uglify-js "^2.6"
1102 |
1103 | has-ansi@^2.0.0:
1104 | version "2.0.0"
1105 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1106 | dependencies:
1107 | ansi-regex "^2.0.0"
1108 |
1109 | has-flag@^1.0.0:
1110 | version "1.0.0"
1111 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1112 |
1113 | home-or-tmp@^2.0.0:
1114 | version "2.0.0"
1115 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1116 | dependencies:
1117 | os-homedir "^1.0.0"
1118 | os-tmpdir "^1.0.1"
1119 |
1120 | homedir-polyfill@^1.0.0:
1121 | version "1.0.1"
1122 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc"
1123 | dependencies:
1124 | parse-passwd "^1.0.0"
1125 |
1126 | hosted-git-info@^2.1.4:
1127 | version "2.1.5"
1128 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b"
1129 |
1130 | ignore@^3.2.0:
1131 | version "3.2.0"
1132 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435"
1133 |
1134 | imurmurhash@^0.1.4:
1135 | version "0.1.4"
1136 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1137 |
1138 | indent-string@^2.1.0:
1139 | version "2.1.0"
1140 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1141 | dependencies:
1142 | repeating "^2.0.0"
1143 |
1144 | inflight@^1.0.4:
1145 | version "1.0.6"
1146 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1147 | dependencies:
1148 | once "^1.3.0"
1149 | wrappy "1"
1150 |
1151 | inherits@2, inherits@^2.0.3, inherits@~2.0.1:
1152 | version "2.0.3"
1153 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1154 |
1155 | ini@^1.3.4:
1156 | version "1.3.4"
1157 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1158 |
1159 | inquirer@^0.12.0:
1160 | version "0.12.0"
1161 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
1162 | dependencies:
1163 | ansi-escapes "^1.1.0"
1164 | ansi-regex "^2.0.0"
1165 | chalk "^1.0.0"
1166 | cli-cursor "^1.0.1"
1167 | cli-width "^2.0.0"
1168 | figures "^1.3.5"
1169 | lodash "^4.3.0"
1170 | readline2 "^1.0.1"
1171 | run-async "^0.1.0"
1172 | rx-lite "^3.1.2"
1173 | string-width "^1.0.1"
1174 | strip-ansi "^3.0.0"
1175 | through "^2.3.6"
1176 |
1177 | inquirer@^1.2.2:
1178 | version "1.2.3"
1179 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918"
1180 | dependencies:
1181 | ansi-escapes "^1.1.0"
1182 | chalk "^1.0.0"
1183 | cli-cursor "^1.0.1"
1184 | cli-width "^2.0.0"
1185 | external-editor "^1.1.0"
1186 | figures "^1.3.5"
1187 | lodash "^4.3.0"
1188 | mute-stream "0.0.6"
1189 | pinkie-promise "^2.0.0"
1190 | run-async "^2.2.0"
1191 | rx "^4.1.0"
1192 | string-width "^1.0.1"
1193 | strip-ansi "^3.0.0"
1194 | through "^2.3.6"
1195 |
1196 | interpret@^1.0.0:
1197 | version "1.0.1"
1198 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
1199 |
1200 | invariant@^2.2.0:
1201 | version "2.2.2"
1202 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1203 | dependencies:
1204 | loose-envify "^1.0.0"
1205 |
1206 | invert-kv@^1.0.0:
1207 | version "1.0.0"
1208 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1209 |
1210 | is-arrayish@^0.2.1:
1211 | version "0.2.1"
1212 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1213 |
1214 | is-buffer@^1.0.2:
1215 | version "1.1.4"
1216 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
1217 |
1218 | is-builtin-module@^1.0.0:
1219 | version "1.0.0"
1220 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1221 | dependencies:
1222 | builtin-modules "^1.0.0"
1223 |
1224 | is-dotfile@^1.0.0:
1225 | version "1.0.2"
1226 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
1227 |
1228 | is-equal-shallow@^0.1.3:
1229 | version "0.1.3"
1230 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1231 | dependencies:
1232 | is-primitive "^2.0.0"
1233 |
1234 | is-extendable@^0.1.1:
1235 | version "0.1.1"
1236 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1237 |
1238 | is-extglob@^1.0.0:
1239 | version "1.0.0"
1240 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1241 |
1242 | is-finite@^1.0.0:
1243 | version "1.0.2"
1244 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1245 | dependencies:
1246 | number-is-nan "^1.0.0"
1247 |
1248 | is-fullwidth-code-point@^1.0.0:
1249 | version "1.0.0"
1250 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1251 | dependencies:
1252 | number-is-nan "^1.0.0"
1253 |
1254 | is-fullwidth-code-point@^2.0.0:
1255 | version "2.0.0"
1256 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1257 |
1258 | is-glob@^2.0.0, is-glob@^2.0.1:
1259 | version "2.0.1"
1260 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1261 | dependencies:
1262 | is-extglob "^1.0.0"
1263 |
1264 | is-my-json-valid@^2.10.0:
1265 | version "2.15.0"
1266 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
1267 | dependencies:
1268 | generate-function "^2.0.0"
1269 | generate-object-property "^1.1.0"
1270 | jsonpointer "^4.0.0"
1271 | xtend "^4.0.0"
1272 |
1273 | is-number@^2.0.2, is-number@^2.1.0:
1274 | version "2.1.0"
1275 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1276 | dependencies:
1277 | kind-of "^3.0.2"
1278 |
1279 | is-path-cwd@^1.0.0:
1280 | version "1.0.0"
1281 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1282 |
1283 | is-path-in-cwd@^1.0.0:
1284 | version "1.0.0"
1285 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1286 | dependencies:
1287 | is-path-inside "^1.0.0"
1288 |
1289 | is-path-inside@^1.0.0:
1290 | version "1.0.0"
1291 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1292 | dependencies:
1293 | path-is-inside "^1.0.1"
1294 |
1295 | is-posix-bracket@^0.1.0:
1296 | version "0.1.1"
1297 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1298 |
1299 | is-primitive@^2.0.0:
1300 | version "2.0.0"
1301 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1302 |
1303 | is-promise@^2.1.0:
1304 | version "2.1.0"
1305 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1306 |
1307 | is-property@^1.0.0:
1308 | version "1.0.2"
1309 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1310 |
1311 | is-resolvable@^1.0.0:
1312 | version "1.0.0"
1313 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1314 | dependencies:
1315 | tryit "^1.0.1"
1316 |
1317 | is-utf8@^0.2.0:
1318 | version "0.2.1"
1319 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1320 |
1321 | is-windows@^0.2.0:
1322 | version "0.2.0"
1323 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c"
1324 |
1325 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1326 | version "1.0.0"
1327 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1328 |
1329 | isexe@^1.1.1:
1330 | version "1.1.2"
1331 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0"
1332 |
1333 | isobject@^2.0.0:
1334 | version "2.1.0"
1335 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1336 | dependencies:
1337 | isarray "1.0.0"
1338 |
1339 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0, istanbul-lib-coverage@^1.0.1:
1340 | version "1.0.1"
1341 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212"
1342 |
1343 | istanbul-lib-hook@^1.0.0:
1344 | version "1.0.0"
1345 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5"
1346 | dependencies:
1347 | append-transform "^0.4.0"
1348 |
1349 | istanbul-lib-instrument@^1.4.2:
1350 | version "1.4.2"
1351 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e"
1352 | dependencies:
1353 | babel-generator "^6.18.0"
1354 | babel-template "^6.16.0"
1355 | babel-traverse "^6.18.0"
1356 | babel-types "^6.18.0"
1357 | babylon "^6.13.0"
1358 | istanbul-lib-coverage "^1.0.0"
1359 | semver "^5.3.0"
1360 |
1361 | istanbul-lib-report@^1.0.0-alpha.3:
1362 | version "1.0.0-alpha.3"
1363 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af"
1364 | dependencies:
1365 | async "^1.4.2"
1366 | istanbul-lib-coverage "^1.0.0-alpha"
1367 | mkdirp "^0.5.1"
1368 | path-parse "^1.0.5"
1369 | rimraf "^2.4.3"
1370 | supports-color "^3.1.2"
1371 |
1372 | istanbul-lib-source-maps@^1.1.0:
1373 | version "1.1.0"
1374 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f"
1375 | dependencies:
1376 | istanbul-lib-coverage "^1.0.0-alpha.0"
1377 | mkdirp "^0.5.1"
1378 | rimraf "^2.4.4"
1379 | source-map "^0.5.3"
1380 |
1381 | istanbul-reports@^1.0.0:
1382 | version "1.0.0"
1383 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777"
1384 | dependencies:
1385 | handlebars "^4.0.3"
1386 |
1387 | js-tokens@^2.0.0:
1388 | version "2.0.0"
1389 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
1390 |
1391 | js-tokens@^3.0.0:
1392 | version "3.0.0"
1393 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1"
1394 |
1395 | js-yaml@^3.5.1:
1396 | version "3.7.0"
1397 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
1398 | dependencies:
1399 | argparse "^1.0.7"
1400 | esprima "^2.6.0"
1401 |
1402 | jsesc@^1.3.0:
1403 | version "1.3.0"
1404 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1405 |
1406 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1407 | version "1.0.1"
1408 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1409 | dependencies:
1410 | jsonify "~0.0.0"
1411 |
1412 | json3@3.3.2:
1413 | version "3.3.2"
1414 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1415 |
1416 | json5@^0.5.0:
1417 | version "0.5.1"
1418 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1419 |
1420 | jsonify@~0.0.0:
1421 | version "0.0.0"
1422 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1423 |
1424 | jsonpointer@^4.0.0:
1425 | version "4.0.1"
1426 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
1427 |
1428 | kind-of@^3.0.2:
1429 | version "3.1.0"
1430 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
1431 | dependencies:
1432 | is-buffer "^1.0.2"
1433 |
1434 | lazy-cache@^1.0.3:
1435 | version "1.0.4"
1436 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1437 |
1438 | lcid@^1.0.0:
1439 | version "1.0.0"
1440 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1441 | dependencies:
1442 | invert-kv "^1.0.0"
1443 |
1444 | levn@^0.3.0, levn@~0.3.0:
1445 | version "0.3.0"
1446 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1447 | dependencies:
1448 | prelude-ls "~1.1.2"
1449 | type-check "~0.3.2"
1450 |
1451 | load-json-file@^1.0.0:
1452 | version "1.1.0"
1453 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1454 | dependencies:
1455 | graceful-fs "^4.1.2"
1456 | parse-json "^2.2.0"
1457 | pify "^2.0.0"
1458 | pinkie-promise "^2.0.0"
1459 | strip-bom "^2.0.0"
1460 |
1461 | lodash._baseassign@^3.0.0:
1462 | version "3.2.0"
1463 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e"
1464 | dependencies:
1465 | lodash._basecopy "^3.0.0"
1466 | lodash.keys "^3.0.0"
1467 |
1468 | lodash._basecopy@^3.0.0:
1469 | version "3.0.1"
1470 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
1471 |
1472 | lodash._basecreate@^3.0.0:
1473 | version "3.0.3"
1474 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821"
1475 |
1476 | lodash._getnative@^3.0.0:
1477 | version "3.9.1"
1478 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
1479 |
1480 | lodash._isiterateecall@^3.0.0:
1481 | version "3.0.9"
1482 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
1483 |
1484 | lodash.create@3.1.1:
1485 | version "3.1.1"
1486 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7"
1487 | dependencies:
1488 | lodash._baseassign "^3.0.0"
1489 | lodash._basecreate "^3.0.0"
1490 | lodash._isiterateecall "^3.0.0"
1491 |
1492 | lodash.isarguments@^3.0.0:
1493 | version "3.1.0"
1494 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
1495 |
1496 | lodash.isarray@^3.0.0:
1497 | version "3.0.4"
1498 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
1499 |
1500 | lodash.isequal@^4.5.0:
1501 | version "4.5.0"
1502 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
1503 |
1504 | lodash.keys@^3.0.0:
1505 | version "3.1.2"
1506 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
1507 | dependencies:
1508 | lodash._getnative "^3.0.0"
1509 | lodash.isarguments "^3.0.0"
1510 | lodash.isarray "^3.0.0"
1511 |
1512 | lodash.pickby@^4.6.0:
1513 | version "4.6.0"
1514 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
1515 |
1516 | lodash@^4.0.0:
1517 | version "4.9.0"
1518 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.9.0.tgz#4c20d742f03ce85dc700e0dd7ab9bcab85e6fc14"
1519 |
1520 | lodash@^4.2.0, lodash@^4.3.0, lodash@~4.13.x:
1521 | version "4.13.1"
1522 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.13.1.tgz#83e4b10913f48496d4d16fec4a560af2ee744b68"
1523 |
1524 | longest@^1.0.1:
1525 | version "1.0.1"
1526 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1527 |
1528 | loose-envify@^1.0.0:
1529 | version "1.3.1"
1530 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1531 | dependencies:
1532 | js-tokens "^3.0.0"
1533 |
1534 | loud-rejection@^1.0.0:
1535 | version "1.6.0"
1536 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1537 | dependencies:
1538 | currently-unhandled "^0.4.1"
1539 | signal-exit "^3.0.0"
1540 |
1541 | lru-cache@^4.0.1:
1542 | version "4.0.2"
1543 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e"
1544 | dependencies:
1545 | pseudomap "^1.0.1"
1546 | yallist "^2.0.0"
1547 |
1548 | magic-string@^0.14.0:
1549 | version "0.14.0"
1550 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462"
1551 | dependencies:
1552 | vlq "^0.2.1"
1553 |
1554 | magic-string@^0.19.0:
1555 | version "0.19.0"
1556 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.0.tgz#198948217254e3e0b93080e01146b7c73b2a06b2"
1557 | dependencies:
1558 | vlq "^0.2.1"
1559 |
1560 | make-error@^1.1.1:
1561 | version "1.2.1"
1562 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.2.1.tgz#9a6dfb4844423b9f145806728d05c6e935670e75"
1563 |
1564 | map-obj@^1.0.0, map-obj@^1.0.1:
1565 | version "1.0.1"
1566 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1567 |
1568 | md5-hex@^1.2.0:
1569 | version "1.3.0"
1570 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4"
1571 | dependencies:
1572 | md5-o-matic "^0.1.1"
1573 |
1574 | md5-o-matic@^0.1.1:
1575 | version "0.1.1"
1576 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3"
1577 |
1578 | meow@^3.6.0:
1579 | version "3.7.0"
1580 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
1581 | dependencies:
1582 | camelcase-keys "^2.0.0"
1583 | decamelize "^1.1.2"
1584 | loud-rejection "^1.0.0"
1585 | map-obj "^1.0.1"
1586 | minimist "^1.1.3"
1587 | normalize-package-data "^2.3.4"
1588 | object-assign "^4.0.1"
1589 | read-pkg-up "^1.0.1"
1590 | redent "^1.0.0"
1591 | trim-newlines "^1.0.0"
1592 |
1593 | merge-source-map@^1.0.2:
1594 | version "1.0.3"
1595 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf"
1596 | dependencies:
1597 | source-map "^0.5.3"
1598 |
1599 | micromatch@^2.3.11, micromatch@^2.3.7:
1600 | version "2.3.11"
1601 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1602 | dependencies:
1603 | arr-diff "^2.0.0"
1604 | array-unique "^0.2.1"
1605 | braces "^1.8.2"
1606 | expand-brackets "^0.1.4"
1607 | extglob "^0.3.1"
1608 | filename-regex "^2.0.0"
1609 | is-extglob "^1.0.0"
1610 | is-glob "^2.0.1"
1611 | kind-of "^3.0.2"
1612 | normalize-path "^2.0.1"
1613 | object.omit "^2.0.0"
1614 | parse-glob "^3.0.4"
1615 | regex-cache "^0.4.2"
1616 |
1617 | "minimatch@2 || 3", minimatch@^3.0.2:
1618 | version "3.0.3"
1619 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
1620 | dependencies:
1621 | brace-expansion "^1.0.0"
1622 |
1623 | minimatch@^2.0.1:
1624 | version "2.0.10"
1625 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"
1626 | dependencies:
1627 | brace-expansion "^1.0.0"
1628 |
1629 | minimist@0.0.8, minimist@~0.0.1:
1630 | version "0.0.8"
1631 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1632 |
1633 | minimist@^1.1.3, minimist@^1.2.0:
1634 | version "1.2.0"
1635 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1636 |
1637 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1:
1638 | version "0.5.1"
1639 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1640 | dependencies:
1641 | minimist "0.0.8"
1642 |
1643 | mocha@^3.2.0:
1644 | version "3.2.0"
1645 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3"
1646 | dependencies:
1647 | browser-stdout "1.3.0"
1648 | commander "2.9.0"
1649 | debug "2.2.0"
1650 | diff "1.4.0"
1651 | escape-string-regexp "1.0.5"
1652 | glob "7.0.5"
1653 | growl "1.9.2"
1654 | json3 "3.3.2"
1655 | lodash.create "3.1.1"
1656 | mkdirp "0.5.1"
1657 | supports-color "3.1.2"
1658 |
1659 | ms@0.7.1:
1660 | version "0.7.1"
1661 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
1662 |
1663 | mute-stream@0.0.5:
1664 | version "0.0.5"
1665 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1666 |
1667 | mute-stream@0.0.6:
1668 | version "0.0.6"
1669 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db"
1670 |
1671 | natural-compare@^1.4.0:
1672 | version "1.4.0"
1673 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1674 |
1675 | nested-error-stacks@^1.0.0, nested-error-stacks@^1.0.1:
1676 | version "1.0.2"
1677 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf"
1678 | dependencies:
1679 | inherits "~2.0.1"
1680 |
1681 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
1682 | version "2.3.5"
1683 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
1684 | dependencies:
1685 | hosted-git-info "^2.1.4"
1686 | is-builtin-module "^1.0.0"
1687 | semver "2 || 3 || 4 || 5"
1688 | validate-npm-package-license "^3.0.1"
1689 |
1690 | normalize-path@^2.0.1:
1691 | version "2.0.1"
1692 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
1693 |
1694 | northbrook@^4.3.5, northbrook@^4.5.5:
1695 | version "4.5.5"
1696 | resolved "https://registry.yarnpkg.com/northbrook/-/northbrook-4.5.5.tgz#5f19b0eb310886c7ea84522099fddb5b815a63c7"
1697 | dependencies:
1698 | "@typed/sequence" "^1.1.0"
1699 | "@types/findup-sync" "^0.3.29"
1700 | "@types/minimist" "^1.1.29"
1701 | "@types/mkdirp" "^0.3.29"
1702 | "@types/node" "^6.0.52"
1703 | "@types/ramda" "0.0.2"
1704 | "@types/rimraf" "^0.0.28"
1705 | "@types/semver" "^5.3.30"
1706 | app-module-path "^2.1.0"
1707 | buba "^4.0.2"
1708 | dependency-graph "^0.5.0"
1709 | findup-sync "^0.4.3"
1710 | mkdirp "^0.5.1"
1711 | ramda "^0.22.1"
1712 | reginn "^2.1.4"
1713 | rimraf "^2.5.4"
1714 | semver "^5.3.0"
1715 | simple-spinner "0.0.5"
1716 | stdio-mock "^1.1.0"
1717 | ts-node "^2.0.0"
1718 | typed-colors "^1.0.0"
1719 | typed-figures "^1.0.0"
1720 | typed-prompts "^1.4.0"
1721 |
1722 | number-is-nan@^1.0.0:
1723 | version "1.0.1"
1724 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1725 |
1726 | nyc@^10.1.2:
1727 | version "10.1.2"
1728 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.1.2.tgz#ea7acaa20a235210101604f4e7d56d28453b0274"
1729 | dependencies:
1730 | archy "^1.0.0"
1731 | arrify "^1.0.1"
1732 | caching-transform "^1.0.0"
1733 | convert-source-map "^1.3.0"
1734 | debug-log "^1.0.1"
1735 | default-require-extensions "^1.0.0"
1736 | find-cache-dir "^0.1.1"
1737 | find-up "^1.1.2"
1738 | foreground-child "^1.5.3"
1739 | glob "^7.0.6"
1740 | istanbul-lib-coverage "^1.0.1"
1741 | istanbul-lib-hook "^1.0.0"
1742 | istanbul-lib-instrument "^1.4.2"
1743 | istanbul-lib-report "^1.0.0-alpha.3"
1744 | istanbul-lib-source-maps "^1.1.0"
1745 | istanbul-reports "^1.0.0"
1746 | md5-hex "^1.2.0"
1747 | merge-source-map "^1.0.2"
1748 | micromatch "^2.3.11"
1749 | mkdirp "^0.5.0"
1750 | resolve-from "^2.0.0"
1751 | rimraf "^2.5.4"
1752 | signal-exit "^3.0.1"
1753 | spawn-wrap "1.2.4"
1754 | test-exclude "^3.3.0"
1755 | yargs "^6.6.0"
1756 | yargs-parser "^4.0.2"
1757 |
1758 | object-assign@^4.0.1, object-assign@^4.1.0:
1759 | version "4.1.1"
1760 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1761 |
1762 | object-inspect@^1.2.1:
1763 | version "1.2.1"
1764 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f"
1765 |
1766 | object.omit@^2.0.0:
1767 | version "2.0.1"
1768 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1769 | dependencies:
1770 | for-own "^0.1.4"
1771 | is-extendable "^0.1.1"
1772 |
1773 | once@^1.3.0:
1774 | version "1.4.0"
1775 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1776 | dependencies:
1777 | wrappy "1"
1778 |
1779 | onetime@^1.0.0:
1780 | version "1.1.0"
1781 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1782 |
1783 | optimist@^0.6.1:
1784 | version "0.6.1"
1785 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
1786 | dependencies:
1787 | minimist "~0.0.1"
1788 | wordwrap "~0.0.2"
1789 |
1790 | optionator@^0.8.2:
1791 | version "0.8.2"
1792 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1793 | dependencies:
1794 | deep-is "~0.1.3"
1795 | fast-levenshtein "~2.0.4"
1796 | levn "~0.3.0"
1797 | prelude-ls "~1.1.2"
1798 | type-check "~0.3.2"
1799 | wordwrap "~1.0.0"
1800 |
1801 | os-homedir@^1.0.0, os-homedir@^1.0.1:
1802 | version "1.0.2"
1803 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1804 |
1805 | os-locale@^1.4.0:
1806 | version "1.4.0"
1807 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
1808 | dependencies:
1809 | lcid "^1.0.0"
1810 |
1811 | os-shim@^0.1.2:
1812 | version "0.1.3"
1813 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917"
1814 |
1815 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
1816 | version "1.0.2"
1817 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1818 |
1819 | parse-glob@^3.0.4:
1820 | version "3.0.4"
1821 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1822 | dependencies:
1823 | glob-base "^0.3.0"
1824 | is-dotfile "^1.0.0"
1825 | is-extglob "^1.0.0"
1826 | is-glob "^2.0.0"
1827 |
1828 | parse-json@^2.2.0:
1829 | version "2.2.0"
1830 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1831 | dependencies:
1832 | error-ex "^1.2.0"
1833 |
1834 | parse-passwd@^1.0.0:
1835 | version "1.0.0"
1836 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
1837 |
1838 | path-exists@^2.0.0:
1839 | version "2.1.0"
1840 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1841 | dependencies:
1842 | pinkie-promise "^2.0.0"
1843 |
1844 | path-is-absolute@^1.0.0:
1845 | version "1.0.1"
1846 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1847 |
1848 | path-is-inside@^1.0.1:
1849 | version "1.0.2"
1850 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1851 |
1852 | path-parse@^1.0.5:
1853 | version "1.0.5"
1854 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
1855 |
1856 | path-type@^1.0.0:
1857 | version "1.1.0"
1858 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
1859 | dependencies:
1860 | graceful-fs "^4.1.2"
1861 | pify "^2.0.0"
1862 | pinkie-promise "^2.0.0"
1863 |
1864 | pify@^2.0.0, pify@^2.3.0:
1865 | version "2.3.0"
1866 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1867 |
1868 | pinkie-promise@^2.0.0:
1869 | version "2.0.1"
1870 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1871 | dependencies:
1872 | pinkie "^2.0.0"
1873 |
1874 | pinkie@^2.0.0, pinkie@^2.0.4:
1875 | version "2.0.4"
1876 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1877 |
1878 | pkg-dir@^1.0.0:
1879 | version "1.0.0"
1880 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1881 | dependencies:
1882 | find-up "^1.0.0"
1883 |
1884 | pluralize@^1.2.1:
1885 | version "1.2.1"
1886 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1887 |
1888 | prelude-ls@~1.1.2:
1889 | version "1.1.2"
1890 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1891 |
1892 | preserve@^0.2.0:
1893 | version "0.2.0"
1894 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1895 |
1896 | private@^0.1.6:
1897 | version "0.1.6"
1898 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
1899 |
1900 | process-nextick-args@~1.0.6:
1901 | version "1.0.7"
1902 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1903 |
1904 | progress@^1.1.8:
1905 | version "1.1.8"
1906 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1907 |
1908 | pseudomap@^1.0.1:
1909 | version "1.0.2"
1910 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1911 |
1912 | ramda@^0.22.1:
1913 | version "0.22.1"
1914 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.22.1.tgz#031da0c3df417c5b33c96234757eb37033f36a0e"
1915 |
1916 | randomatic@^1.1.3:
1917 | version "1.1.6"
1918 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
1919 | dependencies:
1920 | is-number "^2.0.2"
1921 | kind-of "^3.0.2"
1922 |
1923 | read-pkg-up@^1.0.1:
1924 | version "1.0.1"
1925 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
1926 | dependencies:
1927 | find-up "^1.0.0"
1928 | read-pkg "^1.0.0"
1929 |
1930 | read-pkg@^1.0.0:
1931 | version "1.1.0"
1932 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
1933 | dependencies:
1934 | load-json-file "^1.0.0"
1935 | normalize-package-data "^2.3.2"
1936 | path-type "^1.0.0"
1937 |
1938 | readable-stream@^2.1.4, readable-stream@^2.2.2:
1939 | version "2.2.2"
1940 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
1941 | dependencies:
1942 | buffer-shims "^1.0.0"
1943 | core-util-is "~1.0.0"
1944 | inherits "~2.0.1"
1945 | isarray "~1.0.0"
1946 | process-nextick-args "~1.0.6"
1947 | string_decoder "~0.10.x"
1948 | util-deprecate "~1.0.1"
1949 |
1950 | readline2@^1.0.1:
1951 | version "1.0.1"
1952 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1953 | dependencies:
1954 | code-point-at "^1.0.0"
1955 | is-fullwidth-code-point "^1.0.0"
1956 | mute-stream "0.0.5"
1957 |
1958 | rechoir@^0.6.2:
1959 | version "0.6.2"
1960 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1961 | dependencies:
1962 | resolve "^1.1.6"
1963 |
1964 | redent@^1.0.0:
1965 | version "1.0.0"
1966 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
1967 | dependencies:
1968 | indent-string "^2.1.0"
1969 | strip-indent "^1.0.1"
1970 |
1971 | regenerator-runtime@^0.10.0:
1972 | version "0.10.1"
1973 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
1974 |
1975 | regex-cache@^0.4.2:
1976 | version "0.4.3"
1977 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
1978 | dependencies:
1979 | is-equal-shallow "^0.1.3"
1980 | is-primitive "^2.0.0"
1981 |
1982 | reginn@^2.1.4:
1983 | version "2.1.5"
1984 | resolved "https://registry.yarnpkg.com/reginn/-/reginn-2.1.5.tgz#c80c28ed8d4f5a524e169bd19456dea03e450e22"
1985 | dependencies:
1986 | minimist "^1.2.0"
1987 | ramda "^0.22.1"
1988 |
1989 | repeat-element@^1.1.2:
1990 | version "1.1.2"
1991 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1992 |
1993 | repeat-string@^1.5.2:
1994 | version "1.6.1"
1995 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1996 |
1997 | repeating@^2.0.0:
1998 | version "2.0.1"
1999 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2000 | dependencies:
2001 | is-finite "^1.0.0"
2002 |
2003 | require-directory@^2.1.1:
2004 | version "2.1.1"
2005 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2006 |
2007 | require-main-filename@^1.0.1:
2008 | version "1.0.1"
2009 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2010 |
2011 | require-uncached@^1.0.2:
2012 | version "1.0.3"
2013 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
2014 | dependencies:
2015 | caller-path "^0.1.0"
2016 | resolve-from "^1.0.0"
2017 |
2018 | resolve-dir@^0.1.0:
2019 | version "0.1.1"
2020 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e"
2021 | dependencies:
2022 | expand-tilde "^1.2.2"
2023 | global-modules "^0.2.3"
2024 |
2025 | resolve-from@^1.0.0:
2026 | version "1.0.1"
2027 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
2028 |
2029 | resolve-from@^2.0.0:
2030 | version "2.0.0"
2031 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
2032 |
2033 | resolve@1.1.7:
2034 | version "1.1.7"
2035 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
2036 |
2037 | resolve@^1.1.6, resolve@^1.1.7:
2038 | version "1.2.0"
2039 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
2040 |
2041 | restore-cursor@^1.0.1:
2042 | version "1.0.1"
2043 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
2044 | dependencies:
2045 | exit-hook "^1.0.0"
2046 | onetime "^1.0.0"
2047 |
2048 | right-align@^0.1.1:
2049 | version "0.1.3"
2050 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2051 | dependencies:
2052 | align-text "^0.1.1"
2053 |
2054 | rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4:
2055 | version "2.5.4"
2056 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
2057 | dependencies:
2058 | glob "^7.0.5"
2059 |
2060 | rollup-plugin-buble@^0.15.0:
2061 | version "0.15.0"
2062 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz#83c3e89c7fd2266c7918f41ba3980313519c7fd0"
2063 | dependencies:
2064 | buble "^0.15.0"
2065 | rollup-pluginutils "^1.5.0"
2066 |
2067 | rollup-plugin-commonjs@^7.0.0:
2068 | version "7.0.0"
2069 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-7.0.0.tgz#510762d5c423c761cd16d8e8451715b39f0ceb08"
2070 | dependencies:
2071 | acorn "^4.0.1"
2072 | estree-walker "^0.3.0"
2073 | magic-string "^0.19.0"
2074 | resolve "^1.1.7"
2075 | rollup-pluginutils "^1.5.1"
2076 |
2077 | rollup-plugin-node-resolve@^2.0.0:
2078 | version "2.0.0"
2079 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.0.0.tgz#07e0ae94ac002a3ea36e8f33ca121d9f836b1309"
2080 | dependencies:
2081 | browser-resolve "^1.11.0"
2082 | builtin-modules "^1.1.0"
2083 | resolve "^1.1.6"
2084 |
2085 | rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1:
2086 | version "1.5.2"
2087 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408"
2088 | dependencies:
2089 | estree-walker "^0.2.1"
2090 | minimatch "^3.0.2"
2091 |
2092 | rollup@^0.41.1, rollup@^0.41.4:
2093 | version "0.41.4"
2094 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.4.tgz#a970580176329f9ead86854d7fd4c46de752aef8"
2095 | dependencies:
2096 | source-map-support "^0.4.0"
2097 |
2098 | run-async@^0.1.0:
2099 | version "0.1.0"
2100 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
2101 | dependencies:
2102 | once "^1.3.0"
2103 |
2104 | run-async@^2.2.0:
2105 | version "2.3.0"
2106 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
2107 | dependencies:
2108 | is-promise "^2.1.0"
2109 |
2110 | rx-lite@^3.1.2:
2111 | version "3.1.2"
2112 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
2113 |
2114 | rx@^4.1.0:
2115 | version "4.1.0"
2116 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
2117 |
2118 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2119 | version "5.3.0"
2120 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2121 |
2122 | set-blocking@^2.0.0:
2123 | version "2.0.0"
2124 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2125 |
2126 | shelljs@^0.7.5:
2127 | version "0.7.6"
2128 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad"
2129 | dependencies:
2130 | glob "^7.0.0"
2131 | interpret "^1.0.0"
2132 | rechoir "^0.6.2"
2133 |
2134 | signal-exit@^2.0.0:
2135 | version "2.1.2"
2136 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564"
2137 |
2138 | signal-exit@^3.0.0, signal-exit@^3.0.1:
2139 | version "3.0.2"
2140 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2141 |
2142 | simple-spinner@0.0.5:
2143 | version "0.0.5"
2144 | resolved "https://registry.yarnpkg.com/simple-spinner/-/simple-spinner-0.0.5.tgz#6faf41e240de52bf267ed79e41b71178faa3feb3"
2145 | dependencies:
2146 | ansi "^0.3.0"
2147 |
2148 | slash@^1.0.0:
2149 | version "1.0.0"
2150 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2151 |
2152 | slice-ansi@0.0.4:
2153 | version "0.0.4"
2154 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
2155 |
2156 | slide@^1.1.5:
2157 | version "1.1.6"
2158 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
2159 |
2160 | source-map-support@^0.4.0, source-map-support@^0.4.2:
2161 | version "0.4.10"
2162 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.10.tgz#d7b19038040a14c0837a18e630a196453952b378"
2163 | dependencies:
2164 | source-map "^0.5.3"
2165 |
2166 | source-map@^0.4.4:
2167 | version "0.4.4"
2168 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2169 | dependencies:
2170 | amdefine ">=0.0.4"
2171 |
2172 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1:
2173 | version "0.5.6"
2174 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
2175 |
2176 | spawn-sync@^1.0.15:
2177 | version "1.0.15"
2178 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
2179 | dependencies:
2180 | concat-stream "^1.4.7"
2181 | os-shim "^0.1.2"
2182 |
2183 | spawn-wrap@1.2.4:
2184 | version "1.2.4"
2185 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40"
2186 | dependencies:
2187 | foreground-child "^1.3.3"
2188 | mkdirp "^0.5.0"
2189 | os-homedir "^1.0.1"
2190 | rimraf "^2.3.3"
2191 | signal-exit "^2.0.0"
2192 | which "^1.2.4"
2193 |
2194 | spdx-correct@~1.0.0:
2195 | version "1.0.2"
2196 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2197 | dependencies:
2198 | spdx-license-ids "^1.0.2"
2199 |
2200 | spdx-expression-parse@~1.0.0:
2201 | version "1.0.4"
2202 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2203 |
2204 | spdx-license-ids@^1.0.2:
2205 | version "1.2.2"
2206 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2207 |
2208 | sprintf-js@~1.0.2:
2209 | version "1.0.3"
2210 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2211 |
2212 | stdio-mock@^1.1.0:
2213 | version "1.1.0"
2214 | resolved "https://registry.yarnpkg.com/stdio-mock/-/stdio-mock-1.1.0.tgz#cf6fcbbf03048436a83fe7ff647c5b9f28528005"
2215 |
2216 | string-width@^1.0.1, string-width@^1.0.2:
2217 | version "1.0.2"
2218 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2219 | dependencies:
2220 | code-point-at "^1.0.0"
2221 | is-fullwidth-code-point "^1.0.0"
2222 | strip-ansi "^3.0.0"
2223 |
2224 | string-width@^2.0.0:
2225 | version "2.0.0"
2226 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
2227 | dependencies:
2228 | is-fullwidth-code-point "^2.0.0"
2229 | strip-ansi "^3.0.0"
2230 |
2231 | string_decoder@~0.10.x:
2232 | version "0.10.31"
2233 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2234 |
2235 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2236 | version "3.0.1"
2237 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2238 | dependencies:
2239 | ansi-regex "^2.0.0"
2240 |
2241 | strip-bom@^2.0.0:
2242 | version "2.0.0"
2243 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2244 | dependencies:
2245 | is-utf8 "^0.2.0"
2246 |
2247 | strip-bom@^3.0.0:
2248 | version "3.0.0"
2249 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2250 |
2251 | strip-indent@^1.0.1:
2252 | version "1.0.1"
2253 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
2254 | dependencies:
2255 | get-stdin "^4.0.1"
2256 |
2257 | strip-json-comments@^2.0.0, strip-json-comments@~2.0.1:
2258 | version "2.0.1"
2259 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2260 |
2261 | supports-color@3.1.2, supports-color@^3.1.2:
2262 | version "3.1.2"
2263 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
2264 | dependencies:
2265 | has-flag "^1.0.0"
2266 |
2267 | supports-color@^2.0.0:
2268 | version "2.0.0"
2269 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2270 |
2271 | table@^3.7.8:
2272 | version "3.8.3"
2273 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
2274 | dependencies:
2275 | ajv "^4.7.0"
2276 | ajv-keywords "^1.0.0"
2277 | chalk "^1.1.1"
2278 | lodash "^4.0.0"
2279 | slice-ansi "0.0.4"
2280 | string-width "^2.0.0"
2281 |
2282 | test-exclude@^3.3.0:
2283 | version "3.3.0"
2284 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977"
2285 | dependencies:
2286 | arrify "^1.0.1"
2287 | micromatch "^2.3.11"
2288 | object-assign "^4.1.0"
2289 | read-pkg-up "^1.0.1"
2290 | require-main-filename "^1.0.1"
2291 |
2292 | text-table@~0.2.0:
2293 | version "0.2.0"
2294 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2295 |
2296 | through@^2.3.6:
2297 | version "2.3.8"
2298 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2299 |
2300 | tmp@^0.0.29:
2301 | version "0.0.29"
2302 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0"
2303 | dependencies:
2304 | os-tmpdir "~1.0.1"
2305 |
2306 | to-fast-properties@^1.0.1:
2307 | version "1.0.2"
2308 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
2309 |
2310 | trim-newlines@^1.0.0:
2311 | version "1.0.0"
2312 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
2313 |
2314 | tryit@^1.0.1:
2315 | version "1.0.3"
2316 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
2317 |
2318 | ts-node@^1.7.2:
2319 | version "1.7.3"
2320 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-1.7.3.tgz#dee7f8a84751732d3c2e497cac5a02fb117dfee7"
2321 | dependencies:
2322 | arrify "^1.0.0"
2323 | chalk "^1.1.1"
2324 | diff "^3.1.0"
2325 | make-error "^1.1.1"
2326 | minimist "^1.2.0"
2327 | mkdirp "^0.5.1"
2328 | pinkie "^2.0.4"
2329 | source-map-support "^0.4.0"
2330 | tsconfig "^5.0.2"
2331 | v8flags "^2.0.11"
2332 | xtend "^4.0.0"
2333 | yn "^1.2.0"
2334 |
2335 | ts-node@^2.0.0:
2336 | version "2.0.0"
2337 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-2.0.0.tgz#16e4fecc949088238b4cbf1c39c9582526b66f74"
2338 | dependencies:
2339 | arrify "^1.0.0"
2340 | chalk "^1.1.1"
2341 | diff "^3.1.0"
2342 | make-error "^1.1.1"
2343 | minimist "^1.2.0"
2344 | mkdirp "^0.5.1"
2345 | pinkie "^2.0.4"
2346 | source-map-support "^0.4.0"
2347 | tsconfig "^5.0.2"
2348 | v8flags "^2.0.11"
2349 | xtend "^4.0.0"
2350 | yn "^1.2.0"
2351 |
2352 | tsconfig@^5.0.2:
2353 | version "5.0.3"
2354 | resolved "https://registry.yarnpkg.com/tsconfig/-/tsconfig-5.0.3.tgz#5f4278e701800967a8fc383fd19648878f2a6e3a"
2355 | dependencies:
2356 | any-promise "^1.3.0"
2357 | parse-json "^2.2.0"
2358 | strip-bom "^2.0.0"
2359 | strip-json-comments "^2.0.0"
2360 |
2361 | type-check@~0.3.2:
2362 | version "0.3.2"
2363 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2364 | dependencies:
2365 | prelude-ls "~1.1.2"
2366 |
2367 | typed-colors@^1.0.0:
2368 | version "1.0.0"
2369 | resolved "https://registry.yarnpkg.com/typed-colors/-/typed-colors-1.0.0.tgz#a86fb57183ea8d955d811aec0e100f565e48bbb9"
2370 |
2371 | typed-figures@^1.0.0:
2372 | version "1.0.0"
2373 | resolved "https://registry.yarnpkg.com/typed-figures/-/typed-figures-1.0.0.tgz#898932b2797b59532cfdf03f23ec2e2dc136126a"
2374 |
2375 | typed-prompts@^1.4.0:
2376 | version "1.5.0"
2377 | resolved "https://registry.yarnpkg.com/typed-prompts/-/typed-prompts-1.5.0.tgz#ac5ad872d71bfdf3a8bbe8d84d382fea8e8e7ef2"
2378 | dependencies:
2379 | inquirer "^1.2.2"
2380 |
2381 | typedarray@^0.0.6:
2382 | version "0.0.6"
2383 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2384 |
2385 | uglify-js@^2.6:
2386 | version "2.7.5"
2387 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8"
2388 | dependencies:
2389 | async "~0.2.6"
2390 | source-map "~0.5.1"
2391 | uglify-to-browserify "~1.0.0"
2392 | yargs "~3.10.0"
2393 |
2394 | uglify-to-browserify@~1.0.0:
2395 | version "1.0.2"
2396 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
2397 |
2398 | user-home@^1.1.1:
2399 | version "1.1.1"
2400 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
2401 |
2402 | user-home@^2.0.0:
2403 | version "2.0.0"
2404 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
2405 | dependencies:
2406 | os-homedir "^1.0.0"
2407 |
2408 | util-deprecate@~1.0.1:
2409 | version "1.0.2"
2410 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2411 |
2412 | v8flags@^2.0.11:
2413 | version "2.0.11"
2414 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881"
2415 | dependencies:
2416 | user-home "^1.1.1"
2417 |
2418 | validate-npm-package-license@^3.0.1:
2419 | version "3.0.1"
2420 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2421 | dependencies:
2422 | spdx-correct "~1.0.0"
2423 | spdx-expression-parse "~1.0.0"
2424 |
2425 | vlq@^0.2.1:
2426 | version "0.2.1"
2427 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c"
2428 |
2429 | which-module@^1.0.0:
2430 | version "1.0.0"
2431 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
2432 |
2433 | which@^1.2.12, which@^1.2.4, which@^1.2.9:
2434 | version "1.2.12"
2435 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192"
2436 | dependencies:
2437 | isexe "^1.1.1"
2438 |
2439 | window-size@0.1.0:
2440 | version "0.1.0"
2441 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
2442 |
2443 | wordwrap@0.0.2:
2444 | version "0.0.2"
2445 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
2446 |
2447 | wordwrap@~0.0.2:
2448 | version "0.0.3"
2449 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
2450 |
2451 | wordwrap@~1.0.0:
2452 | version "1.0.0"
2453 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
2454 |
2455 | wrap-ansi@^2.0.0:
2456 | version "2.1.0"
2457 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2458 | dependencies:
2459 | string-width "^1.0.1"
2460 | strip-ansi "^3.0.1"
2461 |
2462 | wrappy@1:
2463 | version "1.0.2"
2464 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2465 |
2466 | write-file-atomic@^1.1.4:
2467 | version "1.3.1"
2468 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a"
2469 | dependencies:
2470 | graceful-fs "^4.1.11"
2471 | imurmurhash "^0.1.4"
2472 | slide "^1.1.5"
2473 |
2474 | write@^0.2.1:
2475 | version "0.2.1"
2476 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
2477 | dependencies:
2478 | mkdirp "^0.5.1"
2479 |
2480 | xtend@^4.0.0:
2481 | version "4.0.1"
2482 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2483 |
2484 | y18n@^3.2.1:
2485 | version "3.2.1"
2486 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2487 |
2488 | yallist@^2.0.0:
2489 | version "2.0.0"
2490 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4"
2491 |
2492 | yargs-parser@^4.0.2, yargs-parser@^4.2.0:
2493 | version "4.2.1"
2494 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
2495 | dependencies:
2496 | camelcase "^3.0.0"
2497 |
2498 | yargs@^6.6.0:
2499 | version "6.6.0"
2500 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
2501 | dependencies:
2502 | camelcase "^3.0.0"
2503 | cliui "^3.2.0"
2504 | decamelize "^1.1.1"
2505 | get-caller-file "^1.0.1"
2506 | os-locale "^1.4.0"
2507 | read-pkg-up "^1.0.1"
2508 | require-directory "^2.1.1"
2509 | require-main-filename "^1.0.1"
2510 | set-blocking "^2.0.0"
2511 | string-width "^1.0.2"
2512 | which-module "^1.0.0"
2513 | y18n "^3.2.1"
2514 | yargs-parser "^4.2.0"
2515 |
2516 | yargs@~3.10.0:
2517 | version "3.10.0"
2518 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
2519 | dependencies:
2520 | camelcase "^1.0.2"
2521 | cliui "^2.1.0"
2522 | decamelize "^1.0.0"
2523 | window-size "0.1.0"
2524 |
2525 | yn@^1.2.0:
2526 | version "1.2.0"
2527 | resolved "https://registry.yarnpkg.com/yn/-/yn-1.2.0.tgz#d237a4c533f279b2b89d3acac2db4b8c795e4a63"
2528 |
--------------------------------------------------------------------------------