-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.61 KB
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
{
"name": "gnc-text",
"version": "1.0.1",
"description": "Text component with similar features as React Native's Text",
"main": "./lib/index.js",
"files": [
"lib",
"index.js"
],
"scripts": {
"build": "webpack --progress --colors --p",
"start": "webpack-dev-server -d --open",
"test": "jest",
"transpile": "node_modules\\.bin\\babel.cmd ./src/MyComponent.js --presents babel-preset-env --out-file ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GenDecoder/gnc-text.git"
},
"keywords": [
"React",
"Component",
"Overflow",
"Text",
"Elipsis"
],
"author": "Mario Victor Medrano Maldonado",
"license": "MIT",
"bugs": {
"url": "https://github.com/GenDecoder/gnc-text/issues"
},
"homepage": "https://github.com/GenDecoder/gnc-text#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.0",
"node-sass": "^4.7.2",
"prop-types": "^15.6.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"react": "^16.2.0"
}
}