forked from bvaughn/react-highlight.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "qp-react-highlight.js",
"description": "A lightweight React wrapper around the Highlight.js syntaxt highlighting library",
"main": "dist/main.js",
"author": "Brian Vaughn",
"user": "bvaughn",
"version": "1.0.9",
"scripts": {
"build": "npm run build:dist",
"build:dist": "npm run clean:dist && NODE_ENV=production webpack --config webpack.config.dist.js --bail",
"clean": "npm run clean:website && npm run clean:dist",
"clean:dist": "rimraf dist",
"prepublishOnly": "npm run build",
"start": "webpack-dev-server --hot --inline --config webpack.config.dev.js",
"test": "NODE_ENV=test karma start",
"watch": "watch 'clear && npm run lint -s && npm run test -s' src"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/bvaughn/react-highlight.js.git"
},
"homepage": "https://github.com/bvaughn/react-highlight.js/",
"bugs": {
"url": "https://github.com/bvaughn/react-highlight.js/issues"
},
"keywords": [
"react",
"reactjs",
"highlight",
"highlight.js",
"syntax",
"highlighting"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.8.0",
"classnames": "^2.3.1",
"css-loader": "^6.7.1",
"postcss-loader": "^7.0.0",
"precss": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^2.5.2",
"style-loader": "^3.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-export-default-from": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"highlight.js": "^11.5.1"
}
}