-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
80 lines (80 loc) · 2.36 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
{
"name": "bbcode-to-react",
"version": "0.2.9",
"description": "A utility for turning raw BBCode into React elements. ",
"main": "lib/index.js",
"scripts": {
"report-coverage": "coveralls < ./coverage/lcov.info",
"test": "react-scripts test --env=jsdom",
"cover": "npm test -- --coverage",
"start": "npm run build",
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --progress --colors",
"prebuild": "babel src --out-dir lib --ignore src/__tests__/",
"create-release": "sh ./scripts/release",
"publish-release": "sh ./scripts/publish",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JimLiu/bbcode-to-react.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist",
"tonic-example.js"
],
"keywords": [
"bbcode",
"react",
"bbcode parser"
],
"contributors": [
"Junmin Liu (https://github.com/jimliu)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JimLiu/bbcode-to-react/issues"
},
"tonicExampleFilename": "tonic-example.js",
"homepage": "https://github.com/JimLiu/bbcode-to-react#readme",
"dependencies": {},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-app": "^0.2.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^4.0.0-alpha.5",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.1.1",
"conventional-recommended-bump": "^0.3.0",
"copy-webpack-plugin": "^3.0.1",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^4.1.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^2.0.0",
"json-loader": "^0.5.4",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.0",
"react-prism": "4.0.0",
"react-router": "^2.6.1",
"react-scripts": "^1.0.12",
"react-test-renderer": "^15.5.4",
"webpack": "^1.12.13"
}
}