-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 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
74
75
76
77
78
{
"name": "react-loading-image",
"version": "0.5.0",
"description": "A react image loader component",
"homepage": "",
"author": {
"name": "chilijung",
"email": "chilijung@canner.io",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
""
],
"devDependencies": {
"antd": "^3.2.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"enzyme": "^2.4.1",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"git-directory-deploy": "^1.5.1",
"jest": "^22.4.2",
"mocha": "^5.0.3",
"ncp": "^2.0.0",
"precommit-hook-eslint": "^3.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.2.0",
"rimraf": "^2.5.4",
"style-loader": "^0.20.2",
"styled-components": "^3.2.0",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"build:flow": "flow-copy-source -v -i '**/test/**' src lib",
"lint": "eslint src test docs",
"clean": "rimraf lib dist",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:commonjs && npm run build:flow",
"prepublish": "npm run clean && npm run check:src && npm run build",
"check:src": "npm run lint && npm run test",
"test": "jest",
"test:watch": "jest --watch",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development",
"gh-pages:clean": "rimraf _gh-pages && ncp ./docs ./_gh-pages",
"gh-pages:build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.ghPage.js --mode production",
"gh-pages:publish": "git-directory-deploy --directory _gh-pages",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish",
"validate": "npm ls"
},
"pre-commit": [
"lint"
],
"repository": "Canner/react-imgloader",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || 16.x",
"react-dom": "^0.14.0 || ^15.0.0 || 16.x"
},
"license": "MIT"
}