-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
78 lines (78 loc) · 2.21 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
{
"name": "react-typist",
"version": "2.0.5",
"description": "Typing animations with React",
"main": "dist/Typist.js",
"files": ["dist", "src"],
"style": "dist/Typist.css",
"scripts": {
"dist": "webpack --config webpack.dist.config.js",
"standalone": "webpack --config webpack.standalone.config.js",
"examples": "webpack --devtool inline-source-map",
"start": "webpack-dev-server --devtool inline-source-map --progress --colors --inline --hot --public typist.dev:8080 --content-base examples",
"test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jstejada/react-typist"
},
"keywords": [
"react",
"reactjs",
"react-typist",
"react typist",
"typing",
"typing animation",
"typing animations",
"animation",
"animations",
"typist",
"typewriter",
"typewriter animation",
"typewriter animations"
],
"author": "Juan Tejada",
"license": "MIT",
"peerDependencies": {
"react": "^0.14 || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0 || ^16.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.23.1",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.2.3",
"eslint_d": "^4.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine-core": "^2.3.4",
"jasmine-react-matchers": "^1.0.2",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.1",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mock-promises": "^0.6.1",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.2",
"promise-mock": "^1.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}