forked from rcdexta/react-event-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.85 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
{
"name": "react-event-timeline",
"description": "A responsive event timeline in React.js",
"main": "dist/index.js",
"jsnext:main": "components/index.js",
"module": "components/index.js",
"files": [
"src",
"dist",
"README"
],
"scripts": {
"lint": "eslint components/** tests/**",
"lintfix": "eslint --fix components/** tests/**",
"prepublish": "npm run lint && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"storybook": "start-storybook -p 9002",
"test": "mocha --require tests/config/setup 'tests/**/*.test.js'",
"test:watch": "mocha --require tests/config/setup 'tests/**/*.test.js' --watch",
"test:cover": "istanbul cover -x *.test.js _mocha -- -R spec --require tests/config/setup 'tests/**/*.test.js'",
"build": "babel components --out-dir dist",
"docs": "build-storybook -o docs",
"commit": "git cz",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "https://github.com/rcdexta/react-event-timeline.git"
},
"keywords": [
"react",
"timeline",
"notification"
],
"author": "RC",
"license": "MIT",
"bugs": {
"url": "https://github.com/rcdexta/react-event-timeline/issues"
},
"homepage": "https://github.com/rcdexta/react-event-timeline",
"devDependencies": {
"@storybook/addon-info": "^3.2.12",
"@storybook/addon-options": "^3.2.12",
"@storybook/cli": "^3.2.12",
"@storybook/react": "^3.2.12",
"@storybook/storybook-deployer": "^2.0.0",
"autoprefixer": "^8.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.2",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.0",
"node-sass": "^4.7.2",
"react": "^16.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^16.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.6",
"semantic-release": "^12.4.1",
"sinon": "^4.3.0"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}