-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
{
"name": "react-typeout",
"version": "1.0.0",
"description": "Simply a react component that types by itself.",
"keywords": [
"react",
"typewriter",
"component"
],
"main": "lib/index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf ./lib",
"build:lib": "node_modules/.bin/babel src/ -d lib/",
"build": "npm run clean && npm run build:lib && npm run demo:build",
"lint": "node_modules/.bin/eslint src/",
"test": "node_modules/.bin/jest --coverage",
"cover": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coveralls": "npm run test && npm run cover",
"flow": "node_modules/.bin/flow",
"demo:watch": "webpack-dev-server --inline --config webpack.config.js --content-base docs --port 8721 --host 0.0.0.0",
"demo:build": "NODE_ENV=production node_modules/.bin/webpack",
"prepublish": "npm run lint && npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.2",
"babel-jest": "^20.0.3",
"babel-loader": "~6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-3": "^6.17.0",
"coveralls": "^2.13.1",
"enzyme": "^2.7.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-react": "^4.3.0",
"flow-bin": "^0.48.0",
"jest": "^20.0.4",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-router-dom": "^4.1.1",
"react-test-renderer": "^15.6.1",
"webpack": "~1.11.0",
"webpack-dev-server": "~1.10.1"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"author": "Philip Knape <philip.knape@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Knape/react-typeout.git"
},
"bugs": {
"url": "https://github.com/Knape/react-typeout/issues"
},
"homepage": "https://knape.github.io/react-typeout",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.10"
}
}