-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.65 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.65 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "styled-components-theme-validator",
"version": "0.0.0-development",
"description": "Tools that help with validating styled-components theme structure in component libraries.",
"keywords": [
"styled-components",
"theme",
"proptypes",
"react"
],
"author": "Decisiv",
"contributors": [
"UI Platform Development Team at Decisiv, Inc."
],
"repository": {
"type": "git",
"url": "https://github.com/Decisiv/styled-components-theme-validator.git"
},
"license": "MIT",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"build:clean": "rimraf ./dist",
"prepublishOnly": "cross-env NODE_ENV=production yarn run build",
"clean": "yarn run build:clean && yarn run test:clean",
"test": "cross-env CI=1 jest --env=jsdom",
"test:watch": "jest --env=jsdom",
"test:clean": "rimraf ./coverage junit.xml",
"test:coverage": "yarn run test --coverage",
"test:coverage:report": "yarn run test:coverage && opn coverage/index.html",
"test:ci": "cross-env JEST_JUNIT_OUTPUT=reports/junit/js-test-results.xml yarn run test:coverage --ci --reporters=jest-junit",
"lint": "eslint src",
"lint:ci": "yarn run lint --format junit -o reports/junit/js-lint-results.xml src/**",
"review": "yarn lint && yarn test:coverage",
"prettier": "prettier --write src/**/*.js",
"precommit": "lint-staged && yarn run lint",
"semantic-release": "semantic-release"
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"coverageReporters": [
"text",
"cobertura",
"html"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"jest-junit": {
"ancestorSeparator": " › ",
"classNameTemplate": "{classname}",
"output": "./junit-jest.xml",
"suiteName": "Jest Test Suite",
"titleTemplate": "{classname}: {title}",
"usePathForSuiteName": "true"
},
"lint-staged": {
"*.js": [
"prettier",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"branch": "master"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.4",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^0.15.0-rc.13",
"jest": "^23.6.0",
"jest-junit": "^5.1.0",
"lint-staged": "^7.0.5",
"opn-cli": "^3.1.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-url": "^1.4.0",
"semantic-release": "^12.2.5"
},
"peerDependencies": {
"prop-types": "^15.6.0"
},
"dependencies": {
"lodash.compose": "^2.4.1",
"lodash.curry": "^4.1.1"
},
"publishConfig": {
"access": "restricted"
}
}