-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.7 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": "rebash",
"version": "0.1.1",
"description": "Bash interface for you website. Built with React",
"main": "src/Terminal.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --inline --content-base docs",
"build": "cross-env NODE_ENV=production webpack",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpan/rebash.git"
},
"keywords": [
"terminal",
"emulator",
"react"
],
"author": "Lawrence Pan <lawrencefeipan@gmail.com> (http://lpan.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpan/rebash/issues"
},
"homepage": "https://github.com/lpan/rebash#readme",
"peerDependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"cross-env": "^3.1.4",
"enzyme": "^2.7.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2",
"eslint-plugin-react": "^6.8.0",
"jest-cli": "^18.1.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"ramda",
"enzyme",
"./src/styles.js",
"./src/utils/*",
"./src/__mocks__/*"
]
},
"dependencies": {
"ramda": "^0.23.0"
}
}