-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 2.69 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ipa-download",
"version": "2.2.2",
"description": "App Store search and downloader",
"keywords": [
"react",
"iTunes",
"App Store",
"search",
"apple",
"babel",
"ES6",
"IPA"
],
"homepage": "https://nderkach.github.io/ipa-download",
"repository": {
"type": "git",
"url": "[email protected]:nderkach/ipa-downloader.git"
},
"author": "Nikolay Derkach <[email protected]>",
"license": "MIT",
"scripts": {
"coverage": "jest --coverage",
"jest:watch": "jest --watch",
"test": "yarn lint && yarn flow && yarn jest",
"jest:update": "jest --u test/unit",
"jest": "jest test/unit",
"flow": "flow",
"clean": "rimraf dist/",
"build": "webpack --config ./webpack/webpack.config.babel.js --progress --colors --define process.env.NODE_ENV='\"production\"' && cp index.html dist/",
"dev": "webpack-dev-server --config ./webpack/webpack.config.dev.js",
"lint": "eslint src/** webpack/** test/**",
"start": "yarn dev",
"predeploy": "yarn clean && yarn build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"autoprefixer": "^7.1.6",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.3",
"downloadjs": "^1.4.7",
"fecha": "^2.2.0",
"gh-pages": "^2.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-spinkit": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.28.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.4",
"flow-bin": "^0.59.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.7.0",
"jest": "^21.2.1",
"postcss-loader": "^2.0.3",
"prettier": "^1.3.1",
"raf": "^3.4.0",
"rimraf": "^2.5.0",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./test/unit/jest-setup.js"
],
"collectCoverageFrom": [
"src/**.js",
"!src/index.js",
"!src/type.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}