forked from go-e/react-marked-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "react-marked-markdown",
"version": "1.4.3",
"description": "Some React Components to use Markdown easily",
"repository": {
"type": "git",
"url": "https://github.com/vincent-p/react-marked-markdown.git"
},
"license": "MIT",
"scripts": {
"prepare": "babel src --plugins \"transform-runtime\" --ignore __tests__ --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha --require scripts/mocha_runner src/**/__tests__/**/*.js",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "4.x.x",
"babel-plugin-react-require": "2.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-react": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"mocha": "3.0.1",
"nodemon": "1.10.1",
"react-addons-test-utils": "^15.2.1",
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"dependencies": {
"babel-runtime": "6.x.x",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"highlight.js": "^9.3.0",
"marked": "^0.3.5",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.2.1"
}
}