forked from cerner/f-twelve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.85 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
86
87
88
89
90
91
92
93
94
{
"name": "f-twelve",
"version": "2.3.4",
"description": "Render console output to the DOM and provide an input console for troubleshooting environments that do not have the usual F12 dev console.",
"main": "lib/main.js",
"scripts": {
"bookmarklet": "node ./build/createBookmarklet.js",
"build": "npm run compile && npm run pack && npm run bookmarklet",
"compile": "babel src --out-dir lib --ignore **/*.test.js --copy-files --no-copy-ignored --delete-dir-on-start",
"dev": "webpack-dev-server --mode development",
"eslint": "eslint --ext .js .",
"pack": "webpack --mode production",
"pack:dev": "webpack --mode development",
"test": "nyc mocha ./src --recursive",
"watch": "webpack --mode production --watch"
},
"nyc": {
"check-coverage ": true,
"lines": 100,
"exclude": [
"src/polyfills/**/*",
"**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/f-twelve.git"
},
"keywords": [
"Cerner",
"f12",
"debug",
"devtools",
"console",
"js",
"javascript",
"dev"
],
"author": "Cerner Corporation",
"license": "Apache-2.0",
"homepage": "https://github.com/cerner/f-twelve#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.11.2",
"@testing-library/preact": "^2.0.0",
"@testing-library/preact-hooks": "^1.1.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-module-resolver": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.1.1",
"dot-prop": ">=4.2.1",
"eslint": "^5.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.0",
"http-proxy": ">=1.18.1",
"js-yaml": "^3.13.1",
"jsdom": "^15.0.0",
"jsdom-global": "^3.0.2",
"kind-of": ">=6.0.3",
"lodash": ">=4.17.13",
"mini-css-extract-plugin": "^0.5.0",
"minimist": ">=0.2.1",
"mocha": "^6.1.4",
"mock-css-modules": "^1.0.0",
"node-forge": ">=0.10.0",
"node-sass": "^4.14.1",
"nyc": "^14.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"sass-loader": "^8.0.2",
"serialize-javascript": ">=3.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"test-console": "^1.1.0",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.11.2",
"yargs-parser": ">=13.1.2"
},
"dependencies": {
"preact": "^10.5.3"
}
}