package.json 1.33 KB
Newer Older
Lidan Hifi's avatar
Lidan Hifi committed
1 2
{
  "name": "react-native-notifications",
Lidan Hifi's avatar
0.0.5  
Lidan Hifi committed
3
  "version": "0.0.5",
Lidan Hifi's avatar
Lidan Hifi committed
4
  "description": "Advanced Push Notifications (Silent, interactive notifications) for iOS & Android",
Lidan Hifi's avatar
Lidan Hifi committed
5 6
  "author": "Lidan Hifi <lidan.hifi@gmail.com>",
  "license": "MIT",
Lidan Hifi's avatar
Lidan Hifi committed
7 8 9
  "keywords": [
    "react-component",
    "react-native",
Lidan Hifi's avatar
Lidan Hifi committed
10
    "react native",
Lidan Hifi's avatar
Lidan Hifi committed
11
    "ios",
Lidan Hifi's avatar
Lidan Hifi committed
12 13 14 15
    "push-notifications",
    "notifications",
    "notification",
    "react native notifications"
Lidan Hifi's avatar
Lidan Hifi committed
16 17
  ],
  "nativePackage": true,
Lidan Hifi's avatar
Lidan Hifi committed
18 19 20
  "dependencies": {
    "core-js": "^1.0.0"
  },
Lidan Hifi's avatar
Lidan Hifi committed
21 22 23
  "peerDependencies": {
    "react-native": ">=0.19.0"
  },
Lidan Hifi's avatar
Lidan Hifi committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
  "devDependencies": {
    "babel-eslint": "^6.0.2",
    "chai": "^3.5.0",
    "chokidar-cli": "^1.2.0",
    "eslint": "^2.7.0",
    "mocha": "^2.4.5"
  },
  "scripts": {
    "pretest": "./node_modules/.bin/eslint *.js test",
    "test": "./node_modules/.bin/mocha --reporter spec \"test/*.spec.js\"",
    "start": "npm run test --silent; ./node_modules/.bin/chokidar \"test/*.js\" \"*.js\" -c 'npm run test --silent' --silent"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wix/react-native-notifications.git"
  },
43
  "homepage": "https://github.com/wix/react-native-notifications",
Lidan Hifi's avatar
Lidan Hifi committed
44
  "bugs": {
45
    "url": "https://github.com/wix/react-native-notifications/issues"
Lidan Hifi's avatar
Lidan Hifi committed
46
  },
Lidan Hifi's avatar
Lidan Hifi committed
47
  "main": "index.ios.js"
Lidan Hifi's avatar
Lidan Hifi committed
48
}