-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.42 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
{
"version": "0.0.3",
"name": "react-text-cycle",
"description": "React Text Cycle, spins your text right round",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/index.html ./src/favicon.ico ./dist",
"dist": "npm run copy & webpack --env=dist",
"lint": "eslint ./src ./cfg ./.storybook",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve:dist": "start-storybook -p 9001 -c .storybook -- dist",
"serve": "start-storybook -p 9001 -c .storybook -- dev",
"start": "npm run serve",
"test": "mocha-webpack --webpack-config webpack.config.js \"src/**/*.test.jsx\" --require test/setup.js",
"test:watch": "npm run test -- --reporter min --watch"
},
"repository": "https://github.com/plemarquand/react-text-cycle",
"keywords": [
"react",
"react-component",
"carousel",
"headers",
"title",
"hero"
],
"author": {
"name": "Paul LeMarquand",
"email": "plemarquand@gmail.com",
"url": "https://github.com/plemarquand"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.2.0",
"classnames": "^2.2.5",
"copyfiles": "^1.0.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.10.0",
"glob": "^7.0.0",
"isparta-loader": "^2.0.0",
"minimist": "^1.2.0",
"mocha": "^3.0.0",
"mocha-webpack": "^0.7.0",
"mock-raf": "^1.0.0",
"null-loader": "^0.1.1",
"react": ">=15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": ">=15.0.0",
"react-hot-loader": "^1.2.9",
"rimraf": "^2.4.3",
"sinon": "^2.0.0-pre.2",
"storybook-addon-specifications": "^1.0.15",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}