This repository was archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.93 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ifixit/toolbox",
"version": "0.0.0-development",
"description": "A library of reusable React components for iFixit",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "npm run docz:dev",
"docz:dev": "docz dev",
"docz:build": "docz build",
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:update": "npm run test -- --updateSnapshot",
"test:coverage": "npm run test -- --coverage",
"build": "babel src --out-dir dist --extensions \".js,.jsx\"",
"precommit": "lint-staged",
"commitmsg": "commitlint --edit",
"cm": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setup-test-env.js",
"collectCoverageFrom": [
"src/components/**/*.{js,jsx}"
],
"testEnvironment": "jsdom"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"dependencies": {
"feather-icons": "^4.28.0",
"prop-types": "^15.6.1",
"react-star-ratings": "^2.3.0",
"styled-components": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@mdx-js/tag": "^0.15.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"color": "^3.0.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"docz": "^0.12.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"jest": "^22.4.4",
"jest-styled-components": "^6.3.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.4.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"semantic-release": "^17.2.3",
"travis-deploy-once": "^4.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/iFixit/toolbox.git"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}