-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "react-lite-markdown",
"version": "2.0.0",
"description": "React markdown renderer of 简聊",
"main": "lib/index.js",
"dependencies": {
"classnames": "^2.2.0",
"markdown-it": "^5.0.2",
"markdown-it-attrs": "^0.1.3",
"react": "^0.14.7"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.1.0",
"jest-cli": "^0.8.0",
"json-loader": "^0.5.4",
"node-libs-browser": "^0.5.3",
"react-dom": "^0.14.7",
"reset.css": "^2.0.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
},
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.min.coffee --progress",
"prebuild": "rm -rf ./build/",
"prepublish": "npm run script",
"prescript": "rm -rf ./lib/",
"script": "./node_modules/.bin/coffee -o ./lib/ -c ./src/",
"start": "./node_modules/.bin/webpack-dev-server --hot --progress",
"test": "./node_modules/.bin/jest"
},
"keywords": [
"markdown",
"react",
"react-lite",
"react-markdown",
"简聊"
],
"author": "简聊",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teambition/react-lite-markdown.git"
},
"bugs": {
"url": "https://github.com/teambition/react-lite-markdown/issues"
},
"homepage": "https://github.com/teambition/react-lite-markdown#readme",
"jest": {
"scriptPreprocessor": "preprocessor.js",
"moduleFileExtensions": [
"coffee",
"js"
],
"testFileExtensions": [
"coffee",
"js"
],
"unmockedModulePathPatterns": [
"./node_modules/classnames",
"./node_modules/markdown-it",
"./node_modules/react"
]
}
}