├── .eslintrc ├── .gitignore ├── .istanbul.yml ├── .jshintrc ├── .npmignore ├── .nvmrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.js ├── package.json ├── scripts ├── build ├── test └── test-cov ├── src ├── ImmutablePropTypes.js └── __tests__ │ └── ImmutablePropTypes-test.js └── typings ├── __tests__ └── ImmutablePropTest.ts └── index.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/.gitignore -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: ['**/__tests__/**'] -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /scripts/ 2 | __tests__ 3 | /.* 4 | /babel.js 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v0.10.38 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/README.md -------------------------------------------------------------------------------- /babel.js: -------------------------------------------------------------------------------- 1 | require('babel/register')({ 2 | experimental: true, 3 | loose: 'all' 4 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/test-cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/scripts/test-cov -------------------------------------------------------------------------------- /src/ImmutablePropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/src/ImmutablePropTypes.js -------------------------------------------------------------------------------- /src/__tests__/ImmutablePropTypes-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/src/__tests__/ImmutablePropTypes-test.js -------------------------------------------------------------------------------- /typings/__tests__/ImmutablePropTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/typings/__tests__/ImmutablePropTest.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HurricaneJames/react-immutable-proptypes/HEAD/typings/index.d.ts --------------------------------------------------------------------------------