forked from react-native-community/releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 801 Bytes
/
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
{
"name": "react-native-releases",
"description": "Changelog for the React Native project",
"license": "MIT",
"scripts": {
"format": "prettier *.md --write",
"format:check": "prettier *.md --list-different",
"generate": "./changelog-generator.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn format:check"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/releases.git"
},
"author": "",
"bugs": {
"url": "https://github.com/react-native-community/releases/issues"
},
"homepage": "https://github.com/react-native-community/releases#readme",
"devDependencies": {
"husky": "1.3.1",
"prettier": "1.17.0"
},
"dependencies": {
"fast-levenshtein": "^2.0.6",
"yargs": "13.2.2"
}
}