-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@hyperjumptech/react-native-confetti",
"version": "0.1.1",
"description": "React native component to show confetti",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"test": "yarn static-code-analysis && yarn dynamic-code-analysis",
"format": "prettier --write \"src/*.{ts,tsx}\"",
"tslint": "tslint -p .",
"typecheck": "tsc --noEmit",
"check-format": "prettier --check \"src/*.{ts,tsx}\"",
"static-code-analysis": "yarn tslint && yarn typecheck && yarn check-format",
"dynamic-code-analysis": "jest --coverage",
"jest": "jest",
"build": "rm -rf build && tsc",
"clean": "rm -rf build && rm -rf dist",
"build-module": "npm run clean && NODE_ENV=production tsc && publish-flat -f build -o dist",
"publish-module": "npm run build-module && cd dist && npm publish"
},
"jest": {
"preset": "react-native",
"testEnvironment": "jsdom"
},
"keywords": [
"react-native"
],
"bugs": {
"url": "https://github.com/hyperjumptech/react-native-confetti"
},
"homepage": "https://github.com/hyperjumptech/react-native-confetti",
"repository": {
"type": "git",
"url": "https://github.com/hyperjumptech/react-native-confetti"
},
"author": "Raosan Fikri <[email protected]>",
"license": "Apache-2.0",
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/jest-native": "^3.1.0",
"@testing-library/react": "^9.4.0",
"@testing-library/react-native": "^5.0.3",
"@types/jest": "^25.1.0",
"@types/react": "^16.9.19",
"@types/react-native": "^0.61.5",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"publish-flat": "^1.4.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-native": "^0.61.5",
"react-native-firebase": "^5.6.0",
"react-test-renderer": "^16.12.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
}