-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.63 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
{
"name": "react-interval-renderer",
"version": "1.0.0",
"description": "React component that renders its children every x milliseconds",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && npm run test:coverage && npm run clean && babel src -d dist",
"build:storybook": "build-storybook",
"deploy:storybook": "gh-pages -d storybook-static",
"clean": "rimraf dist",
"storybook": "start-storybook -p 9001",
"test": "mocha --require jsdom-global/register --require tests/helpers/setup.js tests/specs/*.spec.js",
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --require jsdom-global/register --require tests/helpers/setup.js tests/specs/*.spec.js",
"test:file": "mocha --require jsdom-global/register --require tests/helpers/setup.js ",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"lines": 99,
"check-coverage": false,
"exclude": [
"tests",
"dist"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/eberhara/react-interval-renderer.git"
},
"keywords": [
"react",
"interval",
"component",
"rerender",
"forceUpdate",
"forceRender"
],
"author": "Andre Eberhardt - [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/eberhara/react-interval-renderer/issues"
},
"homepage": "https://github.com/eberhara/react-interval-renderer",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"enzyme": "^2.8.2",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"gh-pages": "^0.12.0",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mocha": "^2.5.3",
"nyc": "^7.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"webpack-hot-middleware": "^2.18.0"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"prop-types": "^15.5.10"
}
}