-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
81 lines (81 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-native-story",
"description": "Instagram story for react-native",
"main": "src/index.js",
"scripts": {
"test": "mocha --require react-native-mock/mock.js --compilers js:babel-core/register --recursive tests/**/*.test.js",
"test:watch": "npm test -- --watch",
"test:cover": "istanbul cover -x *.test.js _mocha -- -R spec --require react-native-mock/mock.js --compilers js:babel-core/register 'tests/**/*.test.js'",
"test:report": "cat ./coverage/lcov.info | codecov && rm -rf ./coverage",
"lint": "eslint src/**/*.js tests/**/*.js",
"lintfix": "eslint --fix src/**/*.js tests/**/*.js",
"format": "prettier-eslint --write src/**/*.js tests/**/*.js",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ue/react-native-story"
},
"keywords": [
"react-native",
"instagram",
"story",
"snapchat"
],
"author": "Ugur ERDAL",
"license": "MIT",
"bugs": {
"url": "https://github.saobby.my.eu.orgue/react-native-story/issues"
},
"homepage": "https://github.com/ue/react-native-story",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": ">=15.0.0",
"react-native": ">=0.40.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^20.0.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"chai": "^4.0.2",
"codecov.io": "^0.1.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.13.4",
"istanbul": "^1.1.0-alpha.1",
"lint-staged": "^4.0.0",
"mocha": "^5.2.0",
"prettier-eslint-cli": "^4.1.1",
"prop-types": "^15.5.10",
"react-dom": "^15.5.4",
"react-native-mock": "^0.3.1",
"semantic-release": "^15.13.3"
},
"lint-staged": {
"src/**/*.js": [
"prettier-eslint --write",
"git add"
],
"tests/**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"version": "0.1.2",
"directories": {
"test": "tests"
}
}