-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "react-native-thrux-router",
"version": "0.0.0-development",
"description": "ReactNative Router using [Thrux](https://github.com/Thram/thrux) state manager.",
"main": "src/index.jsx",
"scripts": {
"precommit": "npm run lint",
"dependencies": "npm install lodash thrux react react-native",
"lint": "eslint src --ext .jsx,.js",
"lint:test": "eslint __test__ --ext .js",
"test": "",
"gitc": "git add . && git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git ",
"url": "https://github.com/Thram/react-native-thrux-router.git"
},
"keywords": [
"react",
"native",
"thrux",
"router"
],
"author": "Thram <thramposo@gmail.com> (https://thram.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thram/react-native-thrux-router/issues"
},
"homepage": "https://github.com/Thram/react-native-thrux-router#readme",
"peerDependencies": {
"lodash": "^4.17.4",
"thrux": "^3.0.5",
"react": ">=15.4.0",
"react-native": ">=0.40"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"npm-run-all": "^4.0.2",
"semantic-release": "^6.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}