This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.23 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
{
"name": "@mapbox/react-test-kitchen",
"version": "0.4.0",
"description": "A simple little laboratory for React component development and testing",
"main": "index.js",
"bin": {
"rtk-index": "bin/rtk-index.js"
},
"files": [
"index.js",
"src",
"bin",
"lib"
],
"scripts": {
"bundle-watch": "rollup -w -c",
"budo": "budo test/app.js -l -d -P -- -t babelify",
"prestart": "run-p test-cases-index bundle",
"start": "run-p bundle-watch budo",
"test-cases-index": "bin/rtk-index.js ./test/components ./test/component-index.js",
"bundle": "rollup -c",
"prepublishOnly": "npm run bundle",
"lint": "eslint .",
"format": "prettier --write '**/*.js'",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/react-test-kitchen.git"
},
"keywords": [
"react",
"component",
"test",
"testing"
],
"author": "Mapbox",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/react-test-kitchen/issues"
},
"homepage": "https://github.com/mapbox/react-test-kitchen#readme",
"engines": {
"node": ">=12"
},
"peerDependencies": {
"prop-types": "^15.5.0",
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@mapbox/eslint-config-mapbox": "^3.0.0",
"babelify": "^10.0.0",
"budo": "^11.6.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^4.3.8",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"@mapbox/fusspot": "^0.8.1",
"@reach/router": "^1.3.4",
"globby": "^11.0.4",
"meow": "^9.0.0",
"pascal-case": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}