forked from researchgate/react-fast-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.58 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
{
"name": "react-fast-highlight",
"version": "2.2.2",
"description": "A fast react component wrapper for highlight.js",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "run-p build:*",
"build:commonjs": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib --ignore '**/__tests__'",
"build:esm": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir esm --ignore '**/__tests__'",
"create-github-release": "conventional-github-releaser -p angular",
"flow": "flow",
"format": "eslint --fix src test",
"lint": "eslint src",
"prepare": "run-s clean build",
"prerelease": "run-s lint flow test",
"release": "standard-version",
"test": "jest",
"test:coverage": "yarn test --collectCoverage"
},
"repository": {
"type": "git",
"url": "https://github.com/researchgate/react-fast-highlight.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"component",
"highlight",
"syntax",
"highlightjs"
],
"author": "Daniel Tschinder <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/researchgate/react-fast-highlight/issues"
},
"homepage": "https://github.com/researchgate/react-fast-highlight#readme",
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@researchgate/babel-preset-rg": "^2.0.0-beta.2",
"@researchgate/eslint-config-rg-react": "^4.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.0.0",
"babel-jest": "^23.0.1",
"conventional-github-releaser": "^3.1.2",
"cross-env": "^5.0.5",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^5.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.75.0",
"jest": "^23.1.0",
"jest-snapshot": "^23.0.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.0",
"standard-version": "^4.2.0"
},
"dependencies": {
"classnames": "^2.2.3",
"highlight.js": "^9.0.0",
"prop-types": "^15.5.6"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/**/*"
],
"coverageReporters": [
"text",
"json"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/setup-jest.js",
"roots": [
"<rootDir>/src/"
]
}
}