-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 1.76 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
{
"name": "@pankod/project-splash",
"version": "1.0.11",
"description": "project-splash for open source projects",
"scripts": {
"build": "tsc && tscpaths -p tsconfig.json -s ./src -o ./dist && npm run copy-assets",
"copy-assets": "cp -R src/Assets/ dist/Assets/",
"test": "nyc jest",
"posttest": "nyc report --reporter=json > coverage/coverage.json"
},
"repository": {
"type": "git",
"url": "https://github.com/pankod/project-splash"
},
"bugs": {
"url": "https://github.com/pankod/project-splash/issues"
},
"homepage": "https://github.com/pankod/project-splash",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"react",
"react-native",
"npm",
"typescript",
"npm package",
"generator",
"babel",
"react-dom"
],
"author": "Pankod Inc.",
"contributors": [
{
"name": "aydinakyol",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"react": "^16.8.3"
},
"devDependencies": {
"react-native": "^0.59.8",
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.9",
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.2",
"@types/react-native": "^0.57.55",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.2",
"nyc": "^14.1.1",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.3",
"semantic-release": "^15.13.3",
"ts-jest": "^24.0.2",
"tscpaths": "0.0.9",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}