-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.35 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
{
"name": "super-react-infinite-scroll",
"version": "1.0.1",
"description": "Package allows you to load widgets/components on a lazy fashion ",
"main": "index.js",
"scripts": {
"lint": "eslint './{src,test}/**/*.{js,jsx}'",
"lint:fix": "eslint --fix './{src,test}/**/*.{js,jsx}'",
"test:unit": "NODE_ENV=test nyc mocha --compilers js:babel-core/register --require babel-polyfill --require test/enzymeSetup.js --require test/jsdomSetup.js './test/**/*.spec.{js,jsx}'",
"test:report": "NODE_ENV=test nyc report --reporter=lcov mocha --compilers js:babel-core/register --require babel-polyfill --require test/enzymeSetup.js --require test/jsdomSetup.js './test/**/*.spec.{js,jsx}'",
"test": "npm-run-all lint test:unit build",
"build": "webpack --config webpack.dev.js",
"build:production": "webpack -p --config webpack.prod.js",
"start:dev": "NODE_ENV=dev webpack-dev-server --config webpack.dev.js --watch --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmdworkspace/super-react-infinite-scroll.git"
},
"keywords": [
"react",
"infinite",
"scroll",
"lazyloader",
"responsive"
],
"author": "Dinesh GM",
"license": "MIT",
"bugs": {
"url": "https://github.com/gmdworkspace/super-react-infinite-scroll/issues"
},
"homepage": "https://github.com/gmdworkspace/super-react-infinite-scroll#readme",
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-react": "^7.8.1",
"jsdom": "^11.10.0",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.1",
"nyc": "^11.7.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"nyc": {
"exclude": [
"**/*.config.js",
"./test/*Setup.js",
"./src/utils/throttle.js"
]
}
}