-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "eslint-plugin-react-native-animation-linter",
"version": "0.1.2",
"author": "askerry",
"contributors": [
{
"name": "khanacademy",
"email": "[email protected]"
}
],
"description": "Lint rules to ensure safe management of React Native animations.",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/_mocha tests/**/*.js",
"format": "prettier-eslint --write './*.js' './tests/**/*.js' './lib/**/*.js'"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/khan/eslint-plugin-react-native-animation-linter"
},
"homepage": "https://github.com/khan/eslint-plugin-react-native-animation-linter",
"bugs": "https://github.com/khan/eslint-plugin-react-native-animation-linter/issues",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.1.0",
"mocha": "5.2.0",
"prettier-eslint-cli": "^4.7.1"
},
"peerDependencies": {
"eslint": "^3.17.0 || ^4.0.0 || ^5.0.0"
},
"keywords": [
"eslint-plugin",
"eslintplugin",
"react native animation",
"react native"
],
"license": "MIT"
}