-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
{
"name": "react-matrix-text",
"version": "1.1.1",
"description": "ReactJS component that splits and renders a text in a given number of columns",
"keywords": [
"react",
"design",
"style",
"render",
"render pattern",
"typescript",
"ui",
"design"
],
"author": "Alberto Schiabel (https://github.com/jkomyno)",
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.es.js",
"typings": "./lib/index.d.ts",
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf ./lib",
"prebuild": "npm run clean && npm run lint",
"build": "rollup -c",
"build:watch": "rollup -cw",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"test:watch": "npm run test -- --watchAll",
"test:cov": "npm run test -- --coverage",
"test:ci": "npm run lint && npm run test:cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkomyno/react-matrix-text.git"
},
"bugs": {
"url": "https://github.com/jkomyno/react-matrix-text/issues"
},
"homepage": "https://github.com/jkomyno/react-matrix-text#readme",
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.2",
"@types/react": "^16.4.13",
"codecov": "^2.3.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"jest": "^23.6.0",
"lodash.camelcase": "^4.3.0",
"react-dom": "^16.5.1",
"rollup": "^0.66.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.17.0",
"ts-jest": "^23.10.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.3"
},
"dependencies": {
"react": "^16.5.1"
}
}