-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-native-simple-animators",
"version": "2.2.6",
"description": "A collection of simple, reusable react-native animator wrapper components",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=4",
"publish": "npm publish",
"update-changelog": "yarn run auto-changelog && git add . && git commit -m 'Update Changelog' && git push",
"update-tags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"postpublish": "yarn run update-changelog && yarn run update-tags"
},
"jest": {
"preset": "jest-react-native",
"setupFiles": [
"./__mocks__/setup.js"
],
"testPathIgnorePatterns": [
"demo/node_modules"
],
"modulePathIgnorePatterns": [
"demo/node_modules"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AuxStudio/react-native-simple-animators.git"
},
"keywords": [
"react",
"react-native",
"components",
"simple",
"ui",
"animators",
"animation",
"wrapper"
],
"author": "Shaun Saker <info@shaunsaker.com> (http://shaunsaker.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AuxStudio/react-native-simple-animator/issues"
},
"homepage": "https://github.com/AuxStudio/react-native-simple-animators/README.md",
"dependencies": {
"braces": ">=2.3.1",
"lodash": ">=4.17.11",
"prop-types": "^15.6.0"
},
"devDependencies": {
"auto-changelog": "^1.13.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "^23.1.0",
"jest-react-native": "^18.0.0",
"react": "^16.4.0",
"react-native": "^0.55.4",
"react-test-renderer": "^16.4.0"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
}
}