This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
forked from nitin42/terminal-in-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.78 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
79
80
81
82
83
84
85
{
"name": "terminal-in-react",
"version": "4.3.0",
"description": "A component for making a terminal in React",
"main": "lib/js/index.js",
"module": "src/index.js",
"repository": "https://www.github.com/nitin42/terminal-in-react",
"author": "Nitin Tulswani",
"license": "MIT",
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.isequal": "^4.5.0",
"minimist": "^1.2.0",
"platform": "^1.3.4",
"prop-types": "^15.5.10",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-object-inspector": "^0.2.1",
"string-similarity": "^1.2.0",
"styled-components": "3.1.6",
"whatkey": "^2.0.1"
},
"devDependencies": {
"@storybook/react": "^3.2.3",
"autoprefixer": "8.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "8.2.1",
"babel-jest": "22.2.2",
"babel-loader": "^7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"compression-webpack-plugin": "^1.1.6",
"eslint": "4.17.0",
"eslint-config-airbnb": "16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"jest": "22.2.2",
"jsdom": "^11.1.0",
"react-test-renderer": "16.2.0",
"terminal-in-react-pseudo-file-system-plugin": "3.0.0",
"webpack": "^3.1.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.5.1"
},
"scripts": {
"start": "start-storybook -p 6006",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run lint && npm run build",
"prebuildOnly": "rm -rf ./build",
"lint": "./node_modules/.bin/eslint components/",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"build": "npm run build:lib && npm run build:bundle",
"build:bundle": "NODE_ENV=production webpack --config ./webpack/webpack.config.js",
"build:lib": "NODE_ENV=production babel src/js --out-dir lib/js --source-maps"
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFiles": [
"<rootDir>/__mocks__/dom.js"
]
},
"keywords": [
"react",
"terminal",
"simple",
"display"
]
}