This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "react-native-deep-linking",
"version": "0.0.0-development",
"description": "React Native URL routing library",
"main": "index.js",
"files": [
"index.js",
"LICENSE",
"README.md",
"src/"
],
"directories": {
"test": "test"
},
"scripts": {
"prepush": "yarn test",
"commit": "git-cz ",
"test": "jest",
"eslint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"author": "Luis Flores <[email protected]> (http://luisflores.mx/)",
"license": "MIT",
"devDependencies": {
"babel-jest": "^20.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"husky": "^0.14.1",
"jest": "^20.0.0",
"semantic-release": "^6.3.2"
},
"repository": {
"type": "git",
"url": "[email protected]:luisfcofv/react-native-deep-linking.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}