-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
108 lines (108 loc) · 3.06 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "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.7",
"scripts": {
"build": "npm run build:website && npm run build:dist",
"build:website": "npm run clean:website && NODE_ENV=production webpack --config webpack.config.website.js -p --bail",
"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:website": "rimraf build",
"clean:dist": "rimraf dist",
"deploy": "gh-pages -d build",
"lint": "standard",
"prebuild": "npm run lint",
"postpublish": "npm run deploy",
"prepublish": "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",
"standard": {
"parser": "babel-eslint",
"ignore": [
"build",
"dist",
"node_modules"
],
"global": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"it",
"jasmine"
]
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.8.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^3.0.0",
"babel-polyfill": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"expect.js": "^0.3.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.16.1",
"karma": "^0.13.22",
"karma-junit-reporter": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^4.0.0",
"postcss-loader": "^2.0.8",
"precss": "^2.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.4",
"rimraf": "^2.5.2",
"standard": "^7.0.1",
"style-loader": "^0.13.1",
"watch": "^0.18.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"worker-loader": "^0.7.0"
},
"dependencies": {
"highlight.js": "^9.3.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}