-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "remark-react-lowlight",
"description": "Syntax highlighting for remark-react through lowlight",
"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "0.7.0",
"scripts": {
"build": "babel src -d lib",
"watch": "babel src --watch -d lib",
"lint": "eslint . --ext .js --ext .jsx",
"preversion": "npm test && npm run build && git commit --allow-empty -am \"Update lib\"",
"test": "npm run lint && mocha --require test/setup.js --compilers js:babel-register"
},
"main": "lib/index.js",
"dependencies": {
"react-lowlight": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"deepmerge": "^1.5.2",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"hast-util-sanitize": "^1.1.2",
"highlight.js": "^9.10.0",
"jsdom": "^9.12.0",
"mocha": "^3.5.3",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"remark": "^7.0.0",
"remark-react": "^4.0.1"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": ">= 0.11.2 < 17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bebraw/remark-react-lowlight.git"
},
"homepage": "https://github.com/bebraw/remark-react-lowlight",
"bugs": {
"url": "https://github.com/bebraw/remark-react-lowlight/issues"
},
"keywords": [
"remark",
"react",
"lowlight"
],
"license": "MIT"
}