-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.59 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.59 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-show-styles",
"version": "0.0.0-semantically-released",
"description": "Components for revealing computed styles of other components",
"main": "index.js",
"scripts": {
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"commit": "git-cz",
"compile": "tsc",
"predist": "rm -rf dist/ && mkdirp dist/ && npm run compile",
"dist": "browserify index.js --standalone react-show-styles --external react --external --react-dom > dist/react-show-styles.js",
"postdist": "uglifyjs dist/react-show-styles.js -o dist/react-show-styles.min.js",
"lint": "tslint src/**/*.ts -t verbose -t stylish",
"watch:lint": "chokidar src/**/*.{ts,tsx} -c \"npm run lint\" --initial",
"semantic-release": "semantic-release",
"test": "jest",
"watch:test": "jest --watch",
"watch:test:debug": "node --inspect $(npm bin)/jest --watch",
"travis-deploy-once": "travis-deploy-once",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fixate/react-show-styles.git"
},
"keywords": [
"react"
],
"author": "Larry Botha",
"license": "MIT",
"bugs": {
"url": "https://github.com/fixate/react-show-styles/issues"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.6",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"browserify": "^16.2.2",
"chokidar": "^2.0.3",
"chokidar-cli": "^1.2.0",
"codecov": "^3.0.2",
"commitizen": "^2.10.1",
"conventional-changelog": "^2.0.0",
"conventional-changelog-cli": "^2.0.0",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"jest": "^22.1.0",
"jest-dom": "^1.3.1",
"prettier": "^1.13.4",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-testing-library": "^3.1.3",
"semantic-release": "^15.5.0",
"styled-components": "3.4.2",
"travis-deploy-once": "^5.0.0",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-plugin-prettier": "^1.3.0",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"homepage": "https://github.com/fixate/react-show-styles#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}