This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
86 lines (86 loc) · 2.33 KB
/
package.json
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
{
"name": "react-component-variations",
"version": "0.3.4",
"description": "",
"main": "index.js",
"bin": {
"react-component-variations": "./bin.js"
},
"scripts": {
"prebuild": "npm run clean",
"build": "babel src -d . --copy-files",
"build:watch": "npm run build -- --watch",
"clean": "rimraf *.js {commands,helpers,traversal} schema.json",
"lint": "eslint --ext=js,jsx --ignore-path=.gitignore .",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
"prepublish": "npm run build",
"pretest": "npm run lint",
"tests-only": "jest --coverage",
"test": "npm run tests-only"
},
"author": "Jordan Harband <[email protected]>",
"license": "MIT",
"auto-changelog": {
"output": "CHANGELOG.md",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
},
"dependencies": {
"airbnb-prop-types": "^2.12.0",
"array.prototype.find": "^2.0.4",
"array.prototype.flat": "^1.2.1",
"array.prototype.flatmap": "^1.2.1",
"chalk": "^2.4.2",
"find-up": "^3.0.0",
"glob": "^7.1.3",
"has": "^1.0.3",
"jsonschema": "^1.2.4",
"object.assign": "^4.1.0",
"object.entries": "^1.1.0",
"object.fromentries": "^2.0.0",
"object.values": "^1.1.0",
"promise.try": "^1.0.0",
"resolve": "^1.10.0",
"yargs": "^10.1.2"
},
"devDependencies": {
"auto-changelog": "^1.11.0",
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-replace-object-assign": "^1.0.0",
"babel-preset-airbnb": "^2.6.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^23.6.0",
"react": "*",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"react": "*"
},
"jest": {
"collectCoverageFrom": [
"src/**",
"!**/*.json"
],
"coverageReporters": [
"json-summary",
"lcov",
"html"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
],
"testEnvironment": "node",
"testRegex": "test/.*\\.jsx?$"
}
}