forked from akiran/react-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"name": "react-highlight",
"version": "0.5.1",
"description": "React component for syntax highlighting",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/gulp server",
"preinstall": "./node_modules/.bin/babel ./src --out-dir ./lib",
"test": "./node_modules/.bin/karma start --single-run",
"dev-test": "./node_modules/.bin/karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/akiran/react-highlight.git"
},
"keywords": [
"react",
"highlight.js",
"syntax",
"highlighting",
"react-component"
],
"author": "Kiran Abburi",
"license": "MIT",
"bugs": {
"url": "https://github.com/akiran/react-highlight/issues"
},
"homepage": "https://github.com/akiran/react-highlight",
"devDependencies": {
"autoprefixer-core": "^4.0.2",
"babel": "^5.6.14",
"babel-core": "^5.6.18",
"babel-loader": "^5.3.1",
"es5-shim": "^4.1.7",
"gulp": "^3.8.10",
"gulp-ruby-sass": "^0.7.1",
"highlight.js": "^8.6.0",
"html-loader": "^0.2.3",
"jasmine-core": "^2.3.4",
"jsx-loader": "^0.12.2",
"karma": "^0.13.3",
"karma-webpack": "^1.7.0",
"markdown-loader": "^0.1.2",
"multiline": "^1.0.1",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"raw-loader": "^0.5.1",
"react": "^0.14.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.6.6"
},
"peerDependencies": {
"highlight.js": "^8.4.x",
"react": "^0.14.0"
},
"dependencies": {
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3"
}
}