forked from jstejada/react-typist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "react-typist",
"version": "0.3.0",
"description": "Typing animations with React",
"main": "dist/Typist.js",
"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 --host 0.0.0.0 --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",
"react-dom": "^0.14"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"css-loader": "^0.19.0",
"eslint": "^1.5.1",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.4.2",
"extract-text-webpack-plugin": "^0.8.2",
"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",
"node-sass": "^3.3.3",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}