-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 2.79 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
92
93
94
95
96
97
98
99
{
"name": "react-ellipsify",
"description": "Ellipsify content",
"author": "Juho Vepsalainen <[email protected]>",
"user": "bebraw",
"version": "0.6.2",
"scripts": {
"start": "webpack-dev-server",
"test:all": "npm run test:coverage && npm run test:lint",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:watch": "jest --watch --",
"test:lint": "eslint . --ext .js --ext .jsx --cache",
"gh-pages:build": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --json --profile > stats.json",
"build": "babel ./lib --out-dir ./dist-modules",
"preversion": "npm run test:all && npm run build",
"postpublish": "npm run gh-pages && npm run gh-pages:build && gh-pages:deploy"
},
"main": "dist-modules/index.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"catalog": "^2.4.7",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.26.1",
"ent": "^2.2.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"git-prepush-hook": "^1.0.1",
"highlight-loader": "^0.7.2",
"highlight.js": "^9.8.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"html-webpack-template": "^5.4.2",
"jest-cli": "^17.0.3",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"markdown-loader": "^0.1.7",
"purecss": "^0.6.0",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-github-corner": "^0.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^1.0.2",
"xtend": "^4.0.1"
},
"peerDependencies": {
"react": ">= 0.13 < 16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bebraw/react-ellipsify.git"
},
"homepage": "https://bebraw.github.io/react-ellipsify/",
"bugs": {
"url": "https://github.com/bebraw/react-ellipsify/issues"
},
"keywords": [
"react",
"reactjs",
"ellipsis",
"react-component"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bebraw/react-ellipsify/blob/master/LICENSE"
}
],
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
]
},
"pre-push": [
"test:all"
]
}