-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.11 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
{
"name": "just-magic-scroll",
"version": "0.0.4",
"description": "A react component which has a scrollbar but renders (and loads) only visible elements to improve browser performance. The elements need to have the same height.",
"main": "index.js",
"scripts": {
"compile": "babel -d lib/ src/main/js/",
"lint": "eslint --ext .js --ext .jsx --ext .json --fix src/main/js/* src/test/js/*",
"lint:blame": "eslint --ext .js --ext .jsx --ext .json src/main/js/* src/test/js/*",
"lint:report": "eslint --ext .js --ext .jsx --ext .json -f checkstyle -o build/reports/checkstyle/eslint-output.xml src/main/js/* src/test/js/*",
"test": "JUNIT_REPORT_PATH=./build/reports/tests/mocha-results.xml JUNIT_REPORT_STACK=1 BABEL_ENV=test mocha --require ./src/test/js/setup.js --compilers js:babel-core/register --recursive ./src/test/js/",
"test-debug": "BABEL_ENV=test mocha --require ./src/test/js/setup.js --compilers js:babel-core/register --recursive src/test/js/ --debug-brk",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justsocialapps/just-magic-scroll.git"
},
"keywords": [
"scroll",
"infinity"
],
"author": "Jan Burkhardt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/justsocialapps/just-magic-scroll/issues"
},
"homepage": "https://github.com/justsocialapps/just-magic-scroll#readme",
"peerDependencies": {
"react": "15.x.x",
"prop-types": "15.x.x"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-module-resolver": "^2.2.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-standard-react": "^3.0.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.2",
"expect-element": "^1.1.1",
"expect-jsx": "^2.6.0",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"react-dom": "^15.6.2",
"prop-types": "15.6.1"
}
}