-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "react-native-scrollable-list",
"version": "2.1.0",
"description": "A ListView without the boilerplate.",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"check": "npm run lint -s && dependency-check package.json --entry src",
"prebuild": "npm run check -s && npm run clean",
"build": "babel --optional runtime src -d dist",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nachoaIvarez/react-native-scrollable-list.git"
},
"keywords": [
"react",
"react-native",
"ListView",
"wrapper"
],
"author": " <ignacioalvarez92@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nachoaIvarez/react-native-scrollable-list/issues"
},
"homepage": "https://github.com/nachoaIvarez/react-native-scrollable-list#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "*",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react-native": "^1.9.0",
"dependency-check": "*",
"eslint-config-airbnb": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"eslint": "*",
"react-native": "*",
"react": "*",
"rimraf": "*"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}