forked from gitalk/gitalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.24 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
{
"name": "gitalk",
"version": "1.4.1",
"description": "A comment plugin base on GitHub issues",
"keywords": [
"comment",
"plugin",
"lib",
"GitHub"
],
"main": "dist/gitalk.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --no-info --progress",
"build": "rimraf ./dist && cross-env NODE_ENV=production webpack --hide-modules && cross-env NODE_ENV=production webpack --config webpack.config.min.js",
"lint": "eslint src",
"coverage": "jest --coverage",
"test": "jest"
},
"author": "Liucw",
"license": "MIT",
"devDependencies": {
"autoprefixer": "7.1.2",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"cross-env": "5.0.1",
"css-loader": "0.28.4",
"enzyme": "2.9.1",
"eslint": "4.1.1",
"eslint-config-o2team": "0.1.6",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "2.1.2",
"jest": "20.0.4",
"moxios": "0.4.0",
"postcss-loader": "2.0.6",
"raw-loader": "^0.5.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-test-renderer": "15.6.1",
"rimraf": "2.6.1",
"sinon": "2.3.7",
"style-loader": "0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "0.5.9",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
},
"dependencies": {
"autosize": "3.0.21",
"axios": "0.16.2",
"date-fns": "1.28.5",
"es6-promise": "4.1.1",
"github-markdown-css": "2.8.0",
"node-polyglot": "2.2.2",
"preact": "8.1.0",
"preact-compat": "3.16.0",
"react-flip-move": "2.9.14"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css|less|scss|styl)$": "<rootDir>/src/__mocks__/style.js",
"^!!raw-loader": "<rootDir>/src/__mocks__/text.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"coveragePathIgnorePatterns": [
"src/gitalk.jsx",
"src/graphql/getComments.js"
],
"globals": {
"VERSION": "1.0.0-test"
}
}
}